Home
last modified time | relevance | path

Searched refs:colorbuffer (Results 1 – 18 of 18) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/
DFramebuffer.cpp174 void Framebuffer::setColorbuffer(unsigned int colorAttachment, GLenum type, GLuint colorbuffer, GLi… in setColorbuffer() argument
179 mColorbuffers[colorAttachment] = createAttachment(binding, type, colorbuffer, level, layer); in setColorbuffer()
396 const FramebufferAttachment *colorbuffer = mColorbuffers[colorAttachment]; in completeness() local
398 if (colorbuffer) in completeness()
400 if (colorbuffer->getWidth() == 0 || colorbuffer->getHeight() == 0) in completeness()
405 GLenum internalformat = colorbuffer->getInternalFormat(); in completeness()
409 if (colorbuffer->isTexture()) in completeness()
432 if (colorbuffer->getWidth() != width || colorbuffer->getHeight() != height) in completeness()
439 if (colorbuffer->getSamples() != samples) in completeness()
460 (colorbuffer->id() == previousAttachment->id() && in completeness()
[all …]
DFramebuffer.h44 …void setColorbuffer(unsigned int colorAttachment, GLenum type, GLuint colorbuffer, GLint level, GL…
105 …DefaultFramebuffer(rx::Renderer *Renderer, Colorbuffer *colorbuffer, DepthStencilbuffer *depthSten…
DState.cpp1286 gl::FramebufferAttachment *colorbuffer = framebuffer->getFirstColorbuffer(); in getIntegerv() local
1288 if (colorbuffer) in getIntegerv()
1292 case GL_RED_BITS: *params = colorbuffer->getRedSize(); break; in getIntegerv()
1293 case GL_GREEN_BITS: *params = colorbuffer->getGreenSize(); break; in getIntegerv()
1294 case GL_BLUE_BITS: *params = colorbuffer->getBlueSize(); break; in getIntegerv()
1295 case GL_ALPHA_BITS: *params = colorbuffer->getAlphaSize(); break; in getIntegerv()
DProgramBinary.cpp241 const gl::FramebufferAttachment *colorbuffer = colorbuffers[colorAttachment]; in getPixelExecutableForFramebuffer() local
243 if (colorbuffer) in getPixelExecutableForFramebuffer()
245 …outputs.push_back(colorbuffer->getBinding() == GL_BACK ? GL_COLOR_ATTACHMENT0 : colorbuffer->getBi… in getPixelExecutableForFramebuffer()
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
DRenderer11.cpp814 gl::FramebufferAttachment *colorbuffer = colorbuffers[colorAttachment]; in applyRenderTarget() local
816 if (colorbuffer) in applyRenderTarget()
823 if (colorbuffer->getWidth() == 0 || colorbuffer->getHeight() == 0) in applyRenderTarget()
828 renderTargetSerials[colorAttachment] = GetAttachmentSerial(colorbuffer); in applyRenderTarget()
831 RenderTarget11 *renderTarget = d3d11::GetAttachmentRenderTarget(colorbuffer); in applyRenderTarget()
847 renderTargetWidth = colorbuffer->getWidth(); in applyRenderTarget()
848 renderTargetHeight = colorbuffer->getHeight(); in applyRenderTarget()
849 renderTargetFormat = colorbuffer->getActualFormat(); in applyRenderTarget()
1947 gl::FramebufferAttachment *colorbuffer = framebuffer->getReadColorbuffer(); in copyImage2D() local
1948 if (!colorbuffer) in copyImage2D()
[all …]
DImage11.cpp318 gl::FramebufferAttachment *colorbuffer = source->getReadColorbuffer(); in copy() local
320 if (colorbuffer && colorbuffer->getActualFormat() == mActualFormat) in copy()
326 if (mRenderer->getRenderTargetResource(colorbuffer, &subresourceIndex, &colorBufferTexture)) in copy()
DRenderer11.h195 …bool getRenderTargetResource(gl::FramebufferAttachment *colorbuffer, unsigned int *subresourceInde…
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
DBlit9.cpp215 gl::FramebufferAttachment *colorbuffer = framebuffer->getColorbuffer(0); in copy2D() local
217 if (colorbuffer) in copy2D()
219 renderTarget = d3d9::GetAttachmentRenderTarget(colorbuffer); in copy2D()
251 gl::FramebufferAttachment *colorbuffer = framebuffer->getColorbuffer(0); in copyCube() local
253 if (colorbuffer) in copyCube()
255 renderTarget = d3d9::GetAttachmentRenderTarget(colorbuffer); in copyCube()
DImage9.cpp461 gl::FramebufferAttachment *colorbuffer = source->getColorbuffer(0); in copy() local
463 if (colorbuffer) in copy()
465 renderTarget = d3d9::GetAttachmentRenderTarget(colorbuffer); in copy()
DRenderer9.cpp2662 gl::FramebufferAttachment *colorbuffer = framebuffer->getColorbuffer(0); in readPixels() local
2664 if (colorbuffer) in readPixels()
2666 renderTarget = d3d9::GetAttachmentRenderTarget(colorbuffer); in readPixels()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.fbo.msaa.txt40 colorbuffer contents are then resolved to non-multisampled renderbuffer
Dfunctional.texture.mipmap.txt45 colorbuffer.
/external/deqp/modules/gles2/functional/
Des2fFboRenderTest.cpp356 …t FboConfig& config, int width, int height, deUint32 fbo = 0, deUint32 colorbuffer = 0, deUint32 d…
409 …const FboConfig& config, int width, int height, deUint32 fbo, deUint32 colorbuffer, deUint32 depth… in Framebuffer() argument
413 , m_colorbuffer (colorbuffer) in Framebuffer()
1324 deUint32 colorbuffer = 1; in render() local
1331 context.bindTexture(GL_TEXTURE_2D, colorbuffer); in render()
1338 context.bindRenderbuffer(GL_RENDERBUFFER, colorbuffer); in render()
1348 … context.framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, colorbuffer, 0); in render()
1350 …ontext.framebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, colorbuffer); in render()
/external/deqp/modules/gles3/functional/
Des3fFboRenderTest.cpp754 deUint32 colorbuffer = 1; in render() local
762 context.bindTexture(GL_TEXTURE_2D, colorbuffer); in render()
770 context.bindRenderbuffer(GL_RENDERBUFFER, colorbuffer); in render()
780 … context.framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, colorbuffer, 0); in render()
782 …ontext.framebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, colorbuffer); in render()
/external/chromium_org/third_party/mesa/src/src/gallium/docs/source/
Dscreen.rst90 * ``PIPE_CAP_MIXED_COLORBUFFER_FORMATS``: Whether mixed colorbuffer formats are
91 supported, e.g. RGBA8 and RGBA32F as the first and second colorbuffer, resp.
/external/mesa3d/src/gallium/docs/source/
Dscreen.rst90 * ``PIPE_CAP_MIXED_COLORBUFFER_FORMATS``: Whether mixed colorbuffer formats are
91 supported, e.g. RGBA8 and RGBA32F as the first and second colorbuffer, resp.
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.hpp601 …eferenceContextLimits& limits, const rr::MultisamplePixelBufferAccess& colorbuffer, const rr::Mult…
DsglrReferenceContext.cpp312 …eferenceContextLimits& limits, const rr::MultisamplePixelBufferAccess& colorbuffer, const rr::Mult… in ReferenceContext() argument
315 , m_defaultColorbuffer (colorbuffer) in ReferenceContext()
320 , m_viewport (0, 0, colorbuffer.raw().getHeight(), colorbuffer.raw().getDepth()) in ReferenceContext()