• Home
  • Raw
  • Download

Lines Matching refs:mFnPtrs

116       mFnPtrs(new GLXFunctionTable())  in FunctionsGLX()
121 delete mFnPtrs; in ~FunctionsGLX()
175 GET_FNPTR_OR_ERROR(&mFnPtrs->createContextPtr, glXCreateContext); in initialize()
176 GET_FNPTR_OR_ERROR(&mFnPtrs->destroyContextPtr, glXDestroyContext); in initialize()
177 GET_FNPTR_OR_ERROR(&mFnPtrs->makeCurrentPtr, glXMakeCurrent); in initialize()
178 GET_FNPTR_OR_ERROR(&mFnPtrs->swapBuffersPtr, glXSwapBuffers); in initialize()
179 GET_FNPTR_OR_ERROR(&mFnPtrs->queryExtensionPtr, glXQueryExtension); in initialize()
180 GET_FNPTR_OR_ERROR(&mFnPtrs->queryVersionPtr, glXQueryVersion); in initialize()
181 GET_FNPTR_OR_ERROR(&mFnPtrs->getCurrentContextPtr, glXGetCurrentContext); in initialize()
182 GET_FNPTR_OR_ERROR(&mFnPtrs->getCurrentDrawablePtr, glXGetCurrentDrawable); in initialize()
183 GET_FNPTR_OR_ERROR(&mFnPtrs->waitXPtr, glXWaitX); in initialize()
184 GET_FNPTR_OR_ERROR(&mFnPtrs->waitGLPtr, glXWaitGL); in initialize()
187 GET_FNPTR_OR_ERROR(&mFnPtrs->getClientStringPtr, glXGetClientString); in initialize()
188 GET_FNPTR_OR_ERROR(&mFnPtrs->queryExtensionsStringPtr, glXQueryExtensionsString); in initialize()
222 GET_FNPTR_OR_ERROR(&mFnPtrs->getFBConfigsPtr, glXGetFBConfigs); in initialize()
223 GET_FNPTR_OR_ERROR(&mFnPtrs->chooseFBConfigPtr, glXChooseFBConfig); in initialize()
224 GET_FNPTR_OR_ERROR(&mFnPtrs->getFBConfigAttribPtr, glXGetFBConfigAttrib); in initialize()
225 GET_FNPTR_OR_ERROR(&mFnPtrs->getVisualFromFBConfigPtr, glXGetVisualFromFBConfig); in initialize()
226 GET_FNPTR_OR_ERROR(&mFnPtrs->createWindowPtr, glXCreateWindow); in initialize()
227 GET_FNPTR_OR_ERROR(&mFnPtrs->destroyWindowPtr, glXDestroyWindow); in initialize()
228 GET_FNPTR_OR_ERROR(&mFnPtrs->createPbufferPtr, glXCreatePbuffer); in initialize()
229 GET_FNPTR_OR_ERROR(&mFnPtrs->destroyPbufferPtr, glXDestroyPbuffer); in initialize()
230 GET_FNPTR_OR_ERROR(&mFnPtrs->queryDrawablePtr, glXQueryDrawable); in initialize()
235 GET_PROC_OR_ERROR(&mFnPtrs->createContextAttribsARBPtr, glXCreateContextAttribsARB); in initialize()
239 GET_PROC_OR_ERROR(&mFnPtrs->swapIntervalEXTPtr, glXSwapIntervalEXT); in initialize()
243 GET_PROC_OR_ERROR(&mFnPtrs->swapIntervalMESAPtr, glXSwapIntervalMESA); in initialize()
247 GET_PROC_OR_ERROR(&mFnPtrs->swapIntervalSGIPtr, glXSwapIntervalSGI); in initialize()
251 GET_PROC_OR_ERROR(&mFnPtrs->getSyncValuesOMLPtr, glXGetSyncValuesOML); in initialize()
252 GET_PROC_OR_ERROR(&mFnPtrs->getMscRateOMLPtr, glXGetMscRateOML); in initialize()
285 GLXContext context = mFnPtrs->createContextPtr(mXDisplay, visual, shareCtx, direct); in createContext()
291 mFnPtrs->destroyContextPtr(mXDisplay, ctx); in destroyContext()
296 return mFnPtrs->makeCurrentPtr(mXDisplay, drawable, ctx); in makeCurrent()
300 mFnPtrs->swapBuffersPtr(mXDisplay, drawable); in swapBuffers()
304 return mFnPtrs->queryExtensionPtr(mXDisplay, errorBase, event); in queryExtension()
308 return mFnPtrs->queryVersionPtr(mXDisplay, major, minor); in queryVersion()
312 GLXContext context = mFnPtrs->getCurrentContextPtr(); in getCurrentContext()
317 GLXDrawable drawable = mFnPtrs->getCurrentDrawablePtr(); in getCurrentDrawable()
322 mFnPtrs->waitXPtr(); in waitX()
326 mFnPtrs->waitGLPtr(); in waitGL()
332 return mFnPtrs->getClientStringPtr(mXDisplay, name); in getClientString()
337 return mFnPtrs->queryExtensionsStringPtr(mXDisplay, mXScreen); in queryExtensionsString()
343 GLXFBConfig *configs = mFnPtrs->getFBConfigsPtr(mXDisplay, mXScreen, nElements); in getFBConfigs()
348 GLXFBConfig *configs = mFnPtrs->chooseFBConfigPtr(mXDisplay, mXScreen, attribList, nElements); in chooseFBConfig()
354 return mFnPtrs->getFBConfigAttribPtr(mXDisplay, cfg, attribute, value); in getFBConfigAttrib()
359 return mFnPtrs->getVisualFromFBConfigPtr(mXDisplay, cfg); in getVisualFromFBConfig()
366 return mFnPtrs->createWindowPtr(mXDisplay, cfg, window, attribList); in createWindow()
370 mFnPtrs->destroyWindowPtr(mXDisplay, window); in destroyWindow()
375 return mFnPtrs->createPbufferPtr(mXDisplay, cfg, attribList); in createPbuffer()
379 mFnPtrs->destroyPbufferPtr(mXDisplay, pbuffer); in destroyPbuffer()
383 mFnPtrs->queryDrawablePtr(mXDisplay, drawable, attribute, value); in queryDrawable()
395 mFnPtrs->createContextAttribsARBPtr(mXDisplay, cfg, shareCtx, direct, attribList); in createContextAttribsARB()
401 mFnPtrs->swapIntervalEXTPtr(mXDisplay, drawable, intervals); in swapIntervalEXT()
406 return mFnPtrs->swapIntervalMESAPtr(intervals); in swapIntervalMESA()
411 return mFnPtrs->swapIntervalSGIPtr(intervals); in swapIntervalSGI()
419 return mFnPtrs->getSyncValuesOMLPtr(mXDisplay, drawable, ust, msc, sbc); in getSyncValuesOML()
426 return mFnPtrs->getMscRateOMLPtr(mXDisplay, drawable, numerator, denominator); in getMscRateOML()