glDrawCommandsStatesAddressNv function opengl_glext
void
glDrawCommandsStatesAddressNv()
GLAPI void APIENTRY glDrawCommandsStatesAddressNV (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count)
Implementation
void glDrawCommandsStatesAddressNv(
Pointer<Uint64> indirects,
Pointer<Uint32> sizes,
Pointer<Uint32> states,
Pointer<Uint32> fbos,
int count,
) {
final glDrawCommandsStatesAddressNvAsFunction = _glDrawCommandsStatesAddressNv
.cast<
NativeFunction<
Void Function(
Pointer<Uint64> indirects,
Pointer<Uint32> sizes,
Pointer<Uint32> states,
Pointer<Uint32> fbos,
Uint32 count,
)
>
>()
.asFunction<
void Function(
Pointer<Uint64> indirects,
Pointer<Uint32> sizes,
Pointer<Uint32> states,
Pointer<Uint32> fbos,
int count,
)
>();
return glDrawCommandsStatesAddressNvAsFunction(
indirects,
sizes,
states,
fbos,
count,
);
}