GraphicsProgramming / GraphicsProgramming/learnd3d11
Fix vertex shader
Đang mở
cpp-project
good first issue
- Ngôn ngữ chính
- C++
- Star
- 199
- Fork
- 29
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
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`
Hướng dẫn đóng góp
Đánh giá
Issue này chưa được đánh giá.