glTestObjectApple function
int
glTestObjectApple(
- int object,
- int name
)
define glTestObjectAPPLE GLEW_GET_FUN(__glewTestObjectAPPLE)
GLEW_FUN_EXPORT PFNGLTESTOBJECTAPPLEPROC __glewTestObjectAPPLE
typedef GLboolean (GLAPIENTRY * PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name)
Implementation
int glTestObjectApple(int object, int name) {
final glTestObjectAppleAsFunction = _glTestObjectApple
.cast<NativeFunction<Uint8 Function(Uint32 object, Uint32 name)>>()
.asFunction<int Function(int object, int name)>();
return glTestObjectAppleAsFunction(object, name);
}