Skip to content

Commit

Permalink
Merge pull request #448 from mittorn/master
Browse files Browse the repository at this point in the history
 Fix wrong attribute when GLES_SOFTFLOAT defined
  • Loading branch information
ptitSeb committed Nov 1, 2023
2 parents 3d41822 + e63e977 commit e39434a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gl/buffers.c
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ void* APIENTRY_GL4ES gl4es_glMapBuffer(GLenum target, GLenum access) {
noerrorShim();
return buff->data; // Not nice, should do some copy or something probably
}
void* APIENTRY_GLES gl4es_glMapNamedBuffer(GLuint buffer, GLenum access) {
void* APIENTRY_GL4ES gl4es_glMapNamedBuffer(GLuint buffer, GLenum access) {
DBG(printf("glMapNamedBuffer(%u, %s)\n", buffer, PrintEnum(access));)

glbuffer_t *buff = getbuffer_id(buffer);
Expand Down

0 comments on commit e39434a

Please sign in to comment.