GraphicsProgramming / GraphicsProgramming/learnd3d11

Fix vertex shader

Đang mở
#100 0 bình luận 0 reaction 1 người được giao Được @rtarun9 nhận Xem trên GitHub
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

Mở hướng dẫn đóng góp

Đánh giá

Issue này chưa được đánh giá.

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.