GraphicsProgramming / GraphicsProgramming/learnd3d11
Fix vertex shader
Open
cpp-project
good first issue
- Dominant language
- C++
- Stars
- 199
- Forks
- 29
- PR merge metrics
- No merged PRs in 30d
Description
in all chapters `Assets/Main.vs.hlsl`
instead of
```glsl
const matrix modelViewProjection = mul(ProjectionMatrix, mul(ViewMatrix, WorldMatrix));
```
do
```glsl
const matrix modelViewProjection = mul(WorldMatrix, mul(ViewMatrix, ProjectionMatrix));
```
with `row_major matrix`es instead of `matrix`
Contributor guide
Assessment
This issue has not been assessed yet.