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

/external/chromium_org/cc/debug/
H A Dfake_web_graphics_context_3d.h219 virtual void framebufferTexture2D( function in class:cc::FakeWebGraphicsContext3D
/external/chromium_org/ui/compositor/
H A Dtest_web_graphics_context_3d.h176 virtual void framebufferTexture2D(WebKit::WGC3Denum target, function in class:ui::TestWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/tests/
H A DFakeWebGraphicsContext3D.h123 virtual void framebufferTexture2D(WGC3Denum target, WGC3Denum attachment, WGC3Denum textarget, WebGLId texture, WGC3Dint level) { } function in class:WebKit::FakeWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContext.cpp1916 void WebGLRenderingContext::framebufferTexture2D(GC3Denum target, GC3Denum attachment, GC3Denum textarget, WebGLTexture* texture, GC3Dint level) function in class:WebCore::WebGLRenderingContext
1918 if (isContextLost() || !validateFramebufferFuncParameters("framebufferTexture2D", target, attachment))
1921 synthesizeGLError(GraphicsContext3D::INVALID_VALUE, "framebufferTexture2D", "level not 0");
1925 synthesizeGLError(GraphicsContext3D::INVALID_OPERATION, "framebufferTexture2D", "no texture or texture not from this context");
1932 synthesizeGLError(GraphicsContext3D::INVALID_OPERATION, "framebufferTexture2D", "no framebuffer bound");
1938 m_context->framebufferTexture2D(target, GraphicsContext3D::DEPTH_ATTACHMENT, textarget, textureObject, level);
1939 m_context->framebufferTexture2D(target, GraphicsContext3D::STENCIL_ATTACHMENT, textarget, textureObject, level);
1942 m_context->framebufferTexture2D(target, attachment, textarget, textureObject, level);
1945 m_context->framebufferTexture2D(target, attachment, textarget, textureObject, level);
1948 m_context->framebufferTexture2D(targe
[all...]

Completed in 67 milliseconds