Skip to content

Commit

Permalink
TESTS Fix usage of glCompressedTexImage2D in test_core
Browse files Browse the repository at this point in the history
If you run the core test suite on Windows where the
extension is supported we see a failure because there
is a missing argument.
  • Loading branch information
mcfletch committed Jan 2, 2020
1 parent 2f401a0 commit a52215f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,8 @@ def test_compressed_data(self):
GL_TEXTURE_2D, 0,
s3tc.GL_COMPRESSED_RGBA_S3TC_DXT5_EXT,
256, 256, 0,
image
256*256*1,
image,
)
assert texture

Expand Down

0 comments on commit a52215f

Please sign in to comment.