Lines Matching refs:mFunctions
41 const rx::FunctionsGL *mFunctions; field
62 mFunctions = functions;
87 mFunctions->genFramebuffers(1, &mReadFramebuffer);
104 mFunctions->getIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, &drawFBO);
106 mFunctions->bindFramebuffer(GL_FRAMEBUFFER, mReadFramebuffer);
107 mFunctions->framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
110 mFunctions->bindFramebuffer(GL_READ_FRAMEBUFFER, mReadFramebuffer);
111 mFunctions->bindFramebuffer(GL_DRAW_FRAMEBUFFER, drawFBO);
112 mFunctions->blitFramebuffer(0, 0, texture.width, texture.height, 0, 0, texture.width,
115 mFunctions->bindRenderbuffer(GL_RENDERBUFFER, texture.texture);
133 mFunctions(renderer->getFunctions()),
146 mFunctions->deleteRenderbuffers(1, &mDSRenderbuffer);
160 mFunctions->deleteTextures(1, &mSwapState.textures[i].texture);
173 mFunctions->genTextures(1, &mSwapState.textures[i].texture);
175 mFunctions->texImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA,
187 withFunctions:mFunctions];
191 mFunctions->genRenderbuffers(1, &mDSRenderbuffer);
193 mFunctions->renderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, width, height);