Skip to content

Commit ffe1f6c

Browse files
committed
Removed binding checks not known to macos
1 parent 4991ebb commit ffe1f6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/lib/ffgl/FFGL.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -980,10 +980,10 @@ void ValidateContextState()
980980
assert( glInt[ 0 ] == 0 );
981981

982982
//Uncommonly used bindings. You can use the ScopedBufferBinding base class for these.
983-
glGetIntegerv( GL_COPY_READ_BUFFER_BINDING, glInt );
984-
assert( glInt[ 0 ] == 0 );
985-
glGetIntegerv( GL_COPY_WRITE_BUFFER_BINDING, glInt );
986-
assert( glInt[ 0 ] == 0 );
983+
//glGetIntegerv( GL_COPY_READ_BUFFER_BINDING, glInt );
984+
//assert( glInt[ 0 ] == 0 );
985+
//glGetIntegerv( GL_COPY_WRITE_BUFFER_BINDING, glInt );
986+
//assert( glInt[ 0 ] == 0 );
987987
glGetIntegerv( GL_DRAW_INDIRECT_BUFFER_BINDING, glInt );
988988
assert( glInt[ 0 ] == 0 );
989989
glGetIntegerv( GL_PIXEL_PACK_BUFFER_BINDING, glInt );

0 commit comments

Comments
 (0)