glIsProgram function
define glIsProgram GLEW_GET_FUN(__glewIsProgram)
GLEW_FUN_EXPORT PFNGLISPROGRAMPROC __glewIsProgram
typedef GLboolean (GLAPIENTRY * PFNGLISPROGRAMPROC) (GLuint program)
Implementation
int glIsProgram(int program) {
final glIsProgramAsFunction = _glIsProgram
.cast<NativeFunction<Uint8 Function(Uint32 program)>>()
.asFunction<int Function(int program)>();
return glIsProgramAsFunction(program);
}