HomeSort by relevance Sort by last modified time
    Searched defs:colorbuffer (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/angle/src/libGLESv2/
Framebuffer.cpp 174 void Framebuffer::setColorbuffer(unsigned int colorAttachment, GLenum type, GLuint colorbuffer, GLint level, GLint layer)
179 mColorbuffers[colorAttachment] = createAttachment(binding, type, colorbuffer, level, layer);
396 const FramebufferAttachment *colorbuffer = mColorbuffers[colorAttachment]; local
398 if (colorbuffer)
400 if (colorbuffer->getWidth() == 0 || colorbuffer->getHeight() == 0)
405 GLenum internalformat = colorbuffer->getInternalFormat();
409 if (colorbuffer->isTexture())
432 if (colorbuffer->getWidth() != width || colorbuffer->getHeight() != height
696 FramebufferAttachment *colorbuffer = mColorbuffers[colorAttachment]; local
    [all...]
State.cpp 1286 gl::FramebufferAttachment *colorbuffer = framebuffer->getFirstColorbuffer(); local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Blit9.cpp 215 gl::FramebufferAttachment *colorbuffer = framebuffer->getColorbuffer(0); local
217 if (colorbuffer)
219 renderTarget = d3d9::GetAttachmentRenderTarget(colorbuffer);
251 gl::FramebufferAttachment *colorbuffer = framebuffer->getColorbuffer(0); local
253 if (colorbuffer)
255 renderTarget = d3d9::GetAttachmentRenderTarget(colorbuffer);
Image9.cpp 461 gl::FramebufferAttachment *colorbuffer = source->getColorbuffer(0); local
463 if (colorbuffer)
465 renderTarget = d3d9::GetAttachmentRenderTarget(colorbuffer);
Renderer9.cpp 2662 gl::FramebufferAttachment *colorbuffer = framebuffer->getColorbuffer(0); local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
Image11.cpp 318 gl::FramebufferAttachment *colorbuffer = source->getReadColorbuffer(); local
320 if (colorbuffer && colorbuffer->getActualFormat() == mActualFormat)
326 if (mRenderer->getRenderTargetResource(colorbuffer, &subresourceIndex, &colorBufferTexture))
Renderer11.cpp 814 gl::FramebufferAttachment *colorbuffer = colorbuffers[colorAttachment]; local
816 if (colorbuffer)
823 if (colorbuffer->getWidth() == 0 || colorbuffer->getHeight() == 0)
828 renderTargetSerials[colorAttachment] = GetAttachmentSerial(colorbuffer);
831 RenderTarget11 *renderTarget = d3d11::GetAttachmentRenderTarget(colorbuffer);
847 renderTargetWidth = colorbuffer->getWidth();
848 renderTargetHeight = colorbuffer->getHeight();
849 renderTargetFormat = colorbuffer->getActualFormat();
1947 gl::FramebufferAttachment *colorbuffer = framebuffer->getReadColorbuffer(); local
2009 gl::FramebufferAttachment *colorbuffer = framebuffer->getReadColorbuffer(); local
2071 gl::FramebufferAttachment *colorbuffer = framebuffer->getReadColorbuffer(); local
2133 gl::FramebufferAttachment *colorbuffer = framebuffer->getReadColorbuffer(); local
2624 gl::FramebufferAttachment *colorbuffer = framebuffer->getReadColorbuffer(); local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboRenderTest.cpp 140 Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo = 0, deUint32 colorBuffer = 0, deUint32 depthStencilBuffer = 0);
614 : FboRenderCase (context, config.getName().c_str(), "Shared colorbuffer", config)
643 // Fbo B - don't create colorbuffer
744 : FboRenderCase (context, config.getName().c_str(), "Shared colorbuffer clears", config)
754 deUint32 colorbuffer = 1; local
759 // Single colorbuffer
762 context.bindTexture(GL_TEXTURE_2D, colorbuffer);
770 context.bindRenderbuffer(GL_RENDERBUFFER, colorbuffer);
774 // Multiple framebuffers sharing the colorbuffer
780 context.framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, colorbuffer, 0)
    [all...]
  /external/deqp/modules/gles2/functional/
es2fFboRenderTest.cpp 356 Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo = 0, deUint32 colorbuffer = 0, deUint32 depthbuffer = 0, deUint32 stencilbuffer = 0);
409 Framebuffer::Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo, deUint32 colorbuffer, deUint32 depthbuffer, deUint32 stencilbuffer)
413 , m_colorbuffer (colorbuffer)
1324 deUint32 colorbuffer = 1; local
    [all...]

Completed in 186 milliseconds