GraphicsProgramming / GraphicsProgramming/learnd3d11
Fix vertex shader
Offen
cpp-project
good first issue
- Vorherrschende Sprache
- C++
- Sterne
- 199
- Forks
- 29
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
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`
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.