소스 검색

Corrected issue on draws resetting

pull/708/head
raysan5 6 년 전
부모
커밋
a072385c6d
1개의 변경된 파일9개의 추가작업 그리고 5개의 파일을 삭제
  1. +9
    -5
      src/rlgl.h

+ 9
- 5
src/rlgl.h 파일 보기

@ -3961,7 +3961,7 @@ static void DrawBuffersDefault(void)
if (eyesCount == 2) SetStereoView(eye, matProjection, matModelView);
#endif
// Draw quads buffers
// Draw buffers
if (vertexData[currentBuffer].vCounter > 0)
{
// Set current shader and upload current MVP matrix
@ -4047,10 +4047,14 @@ static void DrawBuffersDefault(void)
projection = matProjection;
modelview = matModelView;
// Reset draws counter
draws[0].mode = RL_QUADS;
draws[0].vertexCount = 0;
draws[0].textureId = defaultTextureId;
// Reset draws array
for (int i = 0; i < MAX_DRAWCALL_REGISTERED; i++)
{
draws[i].mode = RL_QUADS;
draws[i].vertexCount = 0;
draws[i].textureId = defaultTextureId;
}
drawsCounter = 1;
// Change to next buffer in the list

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