소스 검색

[rlgl] Fix incorrect matrix multiplication order in `rlMultMatrixf` (#3935)

pull/3963/head
bohonghuang 9 달 전
committed by GitHub
부모
커밋
23385231c6
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/rlgl.h

+ 1
- 1
src/rlgl.h 파일 보기

@ -1296,7 +1296,7 @@ void rlMultMatrixf(const float *matf)
matf[2], matf[6], matf[10], matf[14],
matf[3], matf[7], matf[11], matf[15] };
*RLGL.State.currentMatrix = rlMatrixMultiply(*RLGL.State.currentMatrix, mat);
*RLGL.State.currentMatrix = rlMatrixMultiply(n">mat, *RLGL.State.currentMatrix);
}
// Multiply the current matrix by a perspective matrix generated by parameters

불러오는 중...
취소
저장