GraphicsProgramming / GraphicsProgramming/learnd3d11

Fix vertex shader

Offen
#100 0 Kommentare 0 Reaktionen 1 zugewiesene Person Beansprucht von @rtarun9 Auf GitHub ansehen
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

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.