pyopengl icon indicating copy to clipboard operation
pyopengl copied to clipboard

Repository for the PyOpenGL Project

Results 81 pyopengl issues
Sort by recently updated
recently updated
newest added

Hi @mcfletch , According to the [macOS BigSur release note](https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-release-notes) : `New in macOS Big Sur 11.0.1, the system ships with a built-in dynamic linker cache of all system-provided libraries....

Trying to use `GL_HALF_FLOAT` as type for `glTexImage[2|3]D` leads to the following error (tested on macos with python3.7 and pyopengl 3.1.5 without accelerate): ``` Traceback (most recent call last): File...

I want to visualize the 3D mesh into video. I am getting this by running visualization command line > File "C:\Users\hamid.farhidzadeh\Anaconda3\envs\pytorch\lib\runpy.py", line 194, in _run_module_as_main > return _run_code(code, main_globals, None,...

When I attempt to import the module in Python 3.8, I get this error: `Traceback (most recent call last): File "D:\pygame_test.py", line 3, in from OpenGL.GLU import * File "D:\Python38-32\lib\site-packages\OpenGL\GLU\__init__.py",...

The GL spec for glDrawElements isnt entirely clear what goes in the indices parameter, the spec says a pointer to the indices to draw, ("Specifies a pointer to the location...

In this commit by @pdaniell-nv for KhronosGroup/OpenGL-Registry#285 the OpenGL API is updated to change parameter names for 14 entry points. ``` commit 37add60a829ac4b184089d982e4292a4044e2ca4 Author: Piers Daniell Date: Wed Oct 30...

When using PyOpenGL 3.1.1a1 (from pip install) on Win64, and numpy (1.16.2), I get the following error when trying to call glGenTextures(1): AttributeError: ("module 'numpy' has no attribute 'float128'", 1,...

I'm getting this exception whenever i call glVertexAttribPointer in an OpenGL 2.1 context with OSMesa. That didn't happen when I was using an OpenGL 4.3 context with GLFW I'm using...

WGL extensions are not found when using Python 3 due to use of strings where bytes are required. Below is a traceback trying to use the WGL_EXT_swap_control extension. Changing 3...