Tagged Questions
4
votes
4answers
216 views
What is the fastest way in python to build a c array from a list of tuples of floats?
The context: my Python code pass arrays of 2D vertices to OpenGL.
I tested 2 approaches, one with ctypes, the other with struct, the latter being more than twice faster.
from random import random
...
2
votes
1answer
592 views
Using ctypes.c_void_p as an input to glTexImage2D?
I'm using a 3rd party DLL to load in some raw image data, and I want to use this raw image data as a texture in openGL. However, the c function returns a void*, and I need to somehow convert this so ...