nngxGetExportedCmdlistInfo Function
NNGX_APICALL void NNGX_APIENTRY nngxGetExportedCmdlistInfo(
GLvoid * data,
GLsizei * buffersize,
GLsizei * requestsize,
GLuint * bufferoffset
);
| Name | Description | |
|---|---|---|
| in | data | Pointer to the exported data |
| out | buffersize | Size of the 3D command buffer in bytes |
| out | requestsize | Number of command requests |
| out | bufferoffset | Offset (in bytes) to the address within data where the 3D command buffer is stored. |
Gets information about an exported command list (binary data).
Gets the size of the 3D command buffer and the number of command requests of the exported data, and the offset (in bytes) to the address in the data at which the command buffer is stored. Set data equal to a pointer to data exported by nngxExportCmdlist. The buffersize argument gets the size (in bytes) of the 3D command buffer. The requestsize argument gets the number of command requests. The bufferoffset argument gets the offset (in bytes) to the region at which the 3D command buffer is stored in data.
This function generates the following errors.
| GL_ERROR_8046_DMP | Pointer to invalid data specified for data |
|---|
CONFIDENTIAL