This commit is contained in:
Nigel Stewart 2025-12-29 20:14:26 +10:00 committed by GitHub
commit 03e48c3406
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -384,6 +384,12 @@ EOT
void glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit) void glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit)
EOT EOT
# add missing functions to GL_EXT_direct_state_access (GL_EXT_buffer_storage related)
# https://github.com/nigels-com/glew/issues/454
cat >> $1/GL_EXT_direct_state_access <<EOT
void glNamedBufferStorageEXT (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags)
EOT
# Filter out GL_UNSIGNED_INT and GL_FLOAT from GL_AMD_performance_monitor # Filter out GL_UNSIGNED_INT and GL_FLOAT from GL_AMD_performance_monitor
grep -v 'GL_UNSIGNED_INT ' $1/GL_AMD_performance_monitor > tmp grep -v 'GL_UNSIGNED_INT ' $1/GL_AMD_performance_monitor > tmp
mv tmp $1/GL_AMD_performance_monitor mv tmp $1/GL_AMD_performance_monitor