Lines Matching refs:mFunctions
32 const rx::FunctionsGL *mFunctions; field
54 mFunctions = functions;
113 mFunctions->genFramebuffers(1, &mReadFramebuffer);
128 mFunctions->getIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, &drawFBO);
130 mFunctions->bindFramebuffer(GL_FRAMEBUFFER, mReadFramebuffer);
131 mFunctions->framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
134 mFunctions->bindFramebuffer(GL_READ_FRAMEBUFFER, mReadFramebuffer);
135 mFunctions->bindFramebuffer(GL_DRAW_FRAMEBUFFER, drawFBO);
136 mFunctions->blitFramebuffer(0, 0, texture.width, texture.height, 0, 0, texture.width,
159 mFunctions(renderer->getFunctions()),
204 mFunctions->genTextures(1, &mSwapState.textures[i].texture);
206 mFunctions->texImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA,
218 withFunctions:mFunctions];
222 mFunctions->genRenderbuffers(1, &mDSRenderbuffer);
224 mFunctions->renderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, width, height);