OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:colorAttachment
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/angle/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/src/libGLESv2/renderer/
Renderer11.cpp
871
for (unsigned int
colorAttachment
= 0;
colorAttachment
< gl::IMPLEMENTATION_MAX_DRAW_BUFFERS;
colorAttachment
++)
873
const GLenum drawBufferState = framebuffer->getDrawBufferState(
colorAttachment
);
875
if (framebuffer->getColorbufferType(
colorAttachment
) != GL_NONE && drawBufferState != GL_NONE)
878
ASSERT(drawBufferState == GL_BACK || drawBufferState == (GL_COLOR_ATTACHMENT0_EXT +
colorAttachment
));
880
gl::Renderbuffer *colorbuffer = framebuffer->getColorbuffer(
colorAttachment
);
896
renderTargetSerials[
colorAttachment
] = colorbuffer->getSerial();
906
framebufferRTVs[
colorAttachment
] = renderTarget->getRenderTargetView();
907
if (!framebufferRTVs[
colorAttachment
])
[
all
...]
Completed in 36 milliseconds