mirror of
https://github.com/nigels-com/glew.git
synced 2025-09-03 20:41:44 +00:00
Compare commits
4 Commits
5f28bf0d78
...
8b19ee6717
Author | SHA1 | Date | |
---|---|---|---|
|
8b19ee6717 | ||
|
196b58d441 | ||
|
a24b6d4660 | ||
|
d593a54a21 |
3
Makefile
3
Makefile
@ -144,9 +144,6 @@ tmp/$(SYSTEM)/default/shared/glew.o: src/glew.c include/GL/glew.h include/GL/wgl
|
|||||||
glew.pc: glew.pc.in
|
glew.pc: glew.pc.in
|
||||||
sed \
|
sed \
|
||||||
-e "s|@prefix@|$(GLEW_PREFIX)|g" \
|
-e "s|@prefix@|$(GLEW_PREFIX)|g" \
|
||||||
-e "s|@libdir@|$(LIBDIR)|g" \
|
|
||||||
-e "s|@exec_prefix@|$(BINDIR)|g" \
|
|
||||||
-e "s|@includedir@|$(INCDIR)|g" \
|
|
||||||
-e "s|@version@|$(GLEW_VERSION)|g" \
|
-e "s|@version@|$(GLEW_VERSION)|g" \
|
||||||
-e "s|@cflags@||g" \
|
-e "s|@cflags@||g" \
|
||||||
-e "s|@libname@|$(NAME)|g" \
|
-e "s|@libname@|$(NAME)|g" \
|
||||||
|
@ -378,6 +378,12 @@ EOT
|
|||||||
void glVertexArrayVertexAttribDivisorEXT (GLuint vaobj, GLuint index, GLuint divisor)
|
void glVertexArrayVertexAttribDivisorEXT (GLuint vaobj, GLuint index, GLuint divisor)
|
||||||
EOT
|
EOT
|
||||||
|
|
||||||
|
# add missing functions to GL_EXT_direct_state_access (GL_ARB_sparse_texture related)
|
||||||
|
# https://github.com/nigels-com/glew/issues/445
|
||||||
|
cat >> $1/GL_EXT_direct_state_access <<EOT
|
||||||
|
void glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit)
|
||||||
|
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
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
prefix=@prefix@
|
prefix=@prefix@
|
||||||
exec_prefix=${prefix}
|
exec_prefix=${prefix}
|
||||||
libdir=@libdir@
|
libdir=${exec_prefix}/lib
|
||||||
includedir=${prefix}/include
|
includedir=${prefix}/include
|
||||||
|
|
||||||
Name: glew
|
Name: glew
|
||||||
|
Loading…
Reference in New Issue
Block a user