Skip to content

Commit

Permalink
TESTS Don't print glget calls, compressed image api call revert
Browse files Browse the repository at this point in the history
Apparently the call to the compressed api image that failed on
win32 was correct on linux so it's that there's a broken bit on
win32 that doesn't tigger the wrapper operation.
  • Loading branch information
mcfletch committed Jan 3, 2020
1 parent 8cf737d commit 581d240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def test_glget( self ):
continue
if key >= 0x92be and key <= 0x92c9:
continue
print( 'Trying glGetFloatv( 0x%x )'%(key,))
# print( 'Trying glGetFloatv( 0x%x )'%(key,))
try:
result = glGetFloatv( key )
except error.GLError as err:
Expand Down Expand Up @@ -590,7 +590,7 @@ def test_compressed_data(self):
GL_TEXTURE_2D, 0,
s3tc.GL_COMPRESSED_RGBA_S3TC_DXT5_EXT,
256, 256, 0,
256*256*1,
# 256*256*1,
image,
)
assert texture
Expand Down

0 comments on commit 581d240

Please sign in to comment.