HomeSort by relevance Sort by last modified time
    Searched refs:colorAttachment (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Framebuffer.cpp 26 for (unsigned int colorAttachment = 0; colorAttachment < IMPLEMENTATION_MAX_DRAW_BUFFERS; colorAttachment++)
28 mColorbufferTypes[colorAttachment] = GL_NONE;
29 mDrawBufferStates[colorAttachment] = GL_NONE;
40 for (unsigned int colorAttachment = 0; colorAttachment < IMPLEMENTATION_MAX_DRAW_BUFFERS; colorAttachment++)
42 mColorbufferPointers[colorAttachment].set(NULL);
73 void Framebuffer::setColorbuffer(unsigned int colorAttachment, GLenum type, GLuint colorbuffer
    [all...]
Framebuffer.h 37 void setColorbuffer(unsigned int colorAttachment, GLenum type, GLuint colorbuffer);
44 unsigned int getRenderTargetSerial(unsigned int colorAttachment) const;
48 Renderbuffer *getColorbuffer(unsigned int colorAttachment) const;
56 GLenum getColorbufferType(unsigned int colorAttachment) const;
60 GLuint getColorbufferHandle(unsigned int colorAttachment) const;
64 GLenum getDrawBufferState(unsigned int colorAttachment) const;
65 void setDrawBufferState(unsigned int colorAttachment, GLenum drawBuffer);
67 bool isEnabledColorAttachment(unsigned int colorAttachment) const;
libGLESv2.cpp     [all...]
Context.cpp     [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Renderer11.cpp 874 for (unsigned int colorAttachment = 0; colorAttachment < gl::IMPLEMENTATION_MAX_DRAW_BUFFERS; colorAttachment++)
876 const GLenum drawBufferState = framebuffer->getDrawBufferState(colorAttachment);
878 if (framebuffer->getColorbufferType(colorAttachment) != GL_NONE && drawBufferState != GL_NONE)
881 ASSERT(drawBufferState == GL_BACK || drawBufferState == (GL_COLOR_ATTACHMENT0_EXT + colorAttachment));
883 gl::Renderbuffer *colorbuffer = framebuffer->getColorbuffer(colorAttachment);
899 renderTargetSerials[colorAttachment] = colorbuffer->getSerial();
909 framebufferRTVs[colorAttachment] = renderTarget->getRenderTargetView();
910 if (!framebufferRTVs[colorAttachment])
    [all...]

Completed in 2494 milliseconds