MCPcopy Create free account
hub / github.com/creatale/node-dv / IntGetProcAddress

Function IntGetProcAddress

deps/opencv/modules/core/src/gl_core_3_1.cpp:139–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137 #endif
138
139 static void* IntGetProcAddress(const char* name)
140 {
141 void* func = (void*) CV_GL_GET_PROC_ADDRESS(name);
142 if (!func)
143 {
144 std::ostringstream msg;
145 msg << "Can't load OpenGL extension [" << name << "]";
146 CV_Error(CV_OpenGlApiCallError, msg.str());
147 }
148 return func;
149 }
150#else
151 static void* IntGetProcAddress(const char*)
152 {

Calls

no outgoing calls

Tested by

no test coverage detected