소스 검색

Remove redundant rlDisableVertexAttribute for SHADER_LOC_VERTEX_COLOR (#3871)

pull/3880/head
Kacper Zybała 9 달 전
committed by GitHub
부모
커밋
9cf408f77c
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. +0
    -6
      src/rmodels.c

+ 0
- 6
src/rmodels.c 파일 보기

@ -1470,9 +1470,6 @@ void DrawMesh(Mesh mesh, Material material, Matrix transform)
if (mesh.indices != NULL) rlEnableVertexBufferElement(mesh.vboId[6]);
}
// WARNING: Disable vertex attribute color input if mesh can not provide that data (despite location being enabled in shader)
if (mesh.vboId[3] == 0) rlDisableVertexAttribute(material.shader.locs[SHADER_LOC_VERTEX_COLOR]);
int eyeCount = 1;
if (rlIsStereoRenderEnabled()) eyeCount = 2;
@ -1691,9 +1688,6 @@ void DrawMeshInstanced(Mesh mesh, Material material, const Matrix *transforms, i
if (mesh.indices != NULL) rlEnableVertexBufferElement(mesh.vboId[6]);
}
// WARNING: Disable vertex attribute color input if mesh can not provide that data (despite location being enabled in shader)
if (mesh.vboId[3] == 0) rlDisableVertexAttribute(material.shader.locs[SHADER_LOC_VERTEX_COLOR]);
int eyeCount = 1;
if (rlIsStereoRenderEnabled()) eyeCount = 2;

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