Searched defs:framebufferTexture2D (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/cc/test/
H A Dtest_web_graphics_context_3d.h80 virtual void framebufferTexture2D(GLenum target, function in class:cc::TestWebGraphicsContext3D
/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp383 void GLContext::framebufferTexture2D (deUint32 target, deUint32 attachment, deUint32 textarget, deUint32 texture, int level) function in class:sglr::GLContext
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockWebGraphicsContext3D.h115 virtual void framebufferTexture2D(WGC3Denum target, WGC3Denum attachment, WGC3Denum textarget, WebGLId texture, WGC3Dint level) { } function in class:blink::MockWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp1967 void WebGLRenderingContextBase::framebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, WebGLTexture* texture, GLint level) function in class:blink::__anon11092::WebGLRenderingContextBase
1969 if (isContextLost() || !validateFramebufferFuncParameters("framebufferTexture2D", target, attachment))
1972 synthesizeGLError(GL_INVALID_VALUE, "framebufferTexture2D", "level not 0");
1976 synthesizeGLError(GL_INVALID_OPERATION, "framebufferTexture2D", "no texture or texture not from this context");
1983 synthesizeGLError(GL_INVALID_OPERATION, "framebufferTexture2D", "no framebuffer bound");
1989 webContext()->framebufferTexture2D(target, GL_DEPTH_ATTACHMENT, textarget, textureObject, level);
1990 webContext()->framebufferTexture2D(target, GL_STENCIL_ATTACHMENT, textarget, textureObject, level);
1993 webContext()->framebufferTexture2D(target, attachment, textarget, textureObject, level);
1996 webContext()->framebufferTexture2D(target, attachment, textarget, textureObject, level);
1999 webContext()->framebufferTexture2D(targe
[all...]

Completed in 445 milliseconds