Parcourir la source

Fixing pointer arithmetic to avoid error [-Werror=pointer-arith] (#1685)

pull/1687/head
Maksymilian Mika il y a 4 ans
committed by GitHub
Parent
révision
f38ced15e7
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 4AEE18F83AFDEB23
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      src/rlgl.h

+ 2
- 2
src/rlgl.h Voir le fichier

@ -3118,7 +3118,7 @@ void rlDrawVertexArray(int offset, int count)
void rlDrawVertexArrayElements(int offset, int count, void *buffer)
{
glDrawElements(GL_TRIANGLES, count, GL_UNSIGNED_SHORT, buffer + offset);
glDrawElements(GL_TRIANGLES, count, GL_UNSIGNED_SHORT, p">(unsigned short*)buffer + offset);
}
void rlDrawVertexArrayInstanced(int offset, int count, int instances)
@ -3131,7 +3131,7 @@ void rlDrawVertexArrayInstanced(int offset, int count, int instances)
void rlDrawVertexArrayElementsInstanced(int offset, int count, void *buffer, int instances)
{
#if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
glDrawElementsInstanced(GL_TRIANGLES, count, GL_UNSIGNED_SHORT, buffer + offset, instances);
glDrawElementsInstanced(GL_TRIANGLES, count, GL_UNSIGNED_SHORT, p">(unsigned short*)buffer + offset, instances);
#endif
}

Chargement…
Annuler
Enregistrer