Merge pull request #37 from puugz/fix-readme-links

update outdated README links
This commit is contained in:
Noel Berry 2023-04-27 10:30:37 -07:00 committed by GitHub
commit da6ef79aa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,12 +40,12 @@ int main()
#### building #### building
- Requires C++17 and CMake 3.14+ - Requires C++17 and CMake 3.14+
- At least one **Renderer** implementation must be enabled in CMake: - At least one **Renderer** implementation must be enabled in CMake:
- [OpenGL](https://github.com/NoelFB/blah/blob/master/src/internal/renderer_gl.cpp) (Default on Linux/macOS) `BLAH_RENDERER_OPENGL` - [OpenGL](https://github.com/NoelFB/blah/blob/master/src/internal/blah_renderer_opengl.cpp) (Default on Linux/macOS) `BLAH_RENDERER_OPENGL`
- [D3D11](https://github.com/NoelFB/blah/blob/master/src/internal/renderer_d3d11.cpp) (Default on Windows) `BLAH_RENDERER_D3D11` - [D3D11](https://github.com/NoelFB/blah/blob/master/src/internal/blah_renderer_d3d11.cpp) (Default on Windows) `BLAH_RENDERER_D3D11`
- Additional renderers can be added by implementing the [Renderer Backend](https://github.com/NoelFB/blah/blob/master/src/internal/renderer.h) - Additional renderers can be added by implementing the [Renderer Backend](https://github.com/NoelFB/blah/blob/master/src/internal/blah_renderer.h)
#### notes #### notes
- There's no Shader abstraction, so you need to swap between GLSL/HLSL depending on the Renderer. - There's no Shader abstraction, so you need to swap between GLSL/HLSL depending on the Renderer.
- Only floatN/mat3x2/mat4x4 uniforms are supported. - Only floatN/mat3x2/mat4x4 uniforms are supported.
- No threaded rendering so it will explode if you try that. - No threaded rendering, so it will explode if you try that.