GraphicsProgramming / GraphicsProgramming/learnd3d11

Fix vertex shader

Open
#100 0 comments 0 reactions 1 assignee Claimed by @rtarun9 View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.