Patches item #3316500, was opened at 2011-06-14 23:56
Message generated for change (Comment added) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=305988&aid=3316500&group_id=5988
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: GL
Group: v3.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Pythonic wrapper for glGenVertexArray
Initial Comment:
I'd like to use glGenVertexArrays like glGenBuffers.
Please add the following wrapper to GL/ARB/vertex_array_object.py
glGenVertexArrays = wrapper.wrapper( glGenVertexArrays ).setOutput(
'buffers', lambda n: (n,), 'n',
)
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2011-06-15 00:26
Message:
Sorry, I've made a mistake. The correct wrapper is here:
glGenVertexArrays = wrapper.wrapper( glGenVertexArrays ).setOutput(
'arrays', lambda n: (n,), 'n',
)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=305988&aid=3316500&group_id=5988
|