Searched defs:framebuffer (Results 1 - 3 of 3) sorted by relevance

/sdk/emulator/opengl/host/libs/Translator/GLES_V2/
H A DGLESv2Imp.cpp201 GL_APICALL void GL_APIENTRY glBindFramebuffer(GLenum target, GLuint framebuffer){ argument
205 GLuint globalFrameBufferName = framebuffer;
206 if(framebuffer && ctx->shareGroup().Ptr()){
207 globalFrameBufferName = ctx->shareGroup()->getGlobalName(FRAMEBUFFER,framebuffer);
208 //if framebuffer wasn't generated before,generate one
210 ctx->shareGroup()->genName(FRAMEBUFFER,framebuffer);
211 ctx->shareGroup()->setObjectData(FRAMEBUFFER, framebuffer,
212 ObjectDataPtr(new FramebufferData(framebuffer)));
213 globalFrameBufferName = ctx->shareGroup()->getGlobalName(FRAMEBUFFER,framebuffer);
218 // update framebuffer bindin
1508 glIsFramebuffer(GLuint framebuffer) argument
[all...]
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/
H A DGLEScmImp.cpp1712 // if the renderbuffer is attached to a framebuffer
1713 // change the framebuffer attachment in the undelying OpenGL
1717 // update the framebuffer attachment point to the
1902 GL_API GLboolean GLAPIENTRY glIsFramebufferOES(GLuint framebuffer) { argument
1905 if (framebuffer && ctx->shareGroup().Ptr()) {
1906 return ctx->shareGroup()->isObject(FRAMEBUFFER,framebuffer) ? GL_TRUE : GL_FALSE;
1908 return ctx->dispatcher().glIsFramebufferEXT(framebuffer);
1911 GL_API void GLAPIENTRY glBindFramebufferOES(GLenum target, GLuint framebuffer) { argument
1915 if (framebuffer && ctx->shareGroup().Ptr() && !ctx->shareGroup()->isObject(FRAMEBUFFER,framebuffer)) {
[all...]
/sdk/emulator/opengl/host/libs/Translator/GLcommon/
H A DDummyGLfuncs.cpp156 GLboolean GLAPIENTRY dummy_glIsFramebufferEXT(GLuint framebuffer){ return false;} argument
157 void GLAPIENTRY dummy_glBindFramebufferEXT(GLenum target, GLuint framebuffer){} argument
183 void GL_APIENTRY dummy_glBindFramebuffer(GLenum target, GLuint framebuffer){} argument
224 GLboolean GL_APIENTRY dummy_glIsFramebuffer(GLuint framebuffer){ return false;} argument

Completed in 137 milliseconds