Changeset View
Changeset View
Standalone View
Standalone View
doc/python_api/rst/bgl.rst
| Show First 20 Lines • Show All 63 Lines • ▼ Show 20 Lines | .. function:: glAreTexturesResident(n, textures, residences): | ||||
| :type residences: :class:`bgl.Buffer` object I{type GL_INT}(boolean) | :type residences: :class:`bgl.Buffer` object I{type GL_INT}(boolean) | ||||
| :arg residences: An array in which the texture residence status in returned. | :arg residences: An array in which the texture residence status in returned. | ||||
| The residence status of a texture named by an element of textures is | The residence status of a texture named by an element of textures is | ||||
| returned in the corresponding element of residences. | returned in the corresponding element of residences. | ||||
| .. function:: glBegin(mode): | .. function:: glBegin(mode): | ||||
| Delimit the vertices of a primitive or a group of like primatives | Delimit the vertices of a primitive or a group of like primitives | ||||
| .. seealso:: `OpenGL Docs <https://www.opengl.org/sdk/docs/man2/xhtml/glBegin.xml>`__ | .. seealso:: `OpenGL Docs <https://www.opengl.org/sdk/docs/man2/xhtml/glBegin.xml>`__ | ||||
| :type mode: Enumerated constant | :type mode: Enumerated constant | ||||
| :arg mode: Specifies the primitive that will be create from vertices between | :arg mode: Specifies the primitive that will be create from vertices between | ||||
| glBegin and glEnd. | glBegin and glEnd. | ||||
| ▲ Show 20 Lines • Show All 2,057 Lines • Show Last 20 Lines | |||||