Searched refs:drawBufferIdx (Results 1 – 6 of 6) sorted by relevance
/external/angle/src/libANGLE/ |
D | PixelLocalStorage.cpp | 340 void clearfv(int drawBufferIdx, const GLfloat value[]) const override in clearfv() argument 342 mContext->clearBufferfv(GL_COLOR, drawBufferIdx, value); in clearfv() 345 void cleariv(int drawBufferIdx, const GLint value[]) const override in cleariv() argument 347 mContext->clearBufferiv(GL_COLOR, drawBufferIdx, value); in cleariv() 350 void clearuiv(int drawBufferIdx, const GLuint value[]) const override in clearuiv() argument 352 mContext->clearBufferuiv(GL_COLOR, drawBufferIdx, value); in clearuiv() 719 for (size_t drawBufferIdx = 0; drawBufferIdx < pendingClears.size(); ++drawBufferIdx) in onBegin() local 721 int plsIdx = pendingClears[drawBufferIdx]; in onBegin() 723 &clearBufferCommands, static_cast<int>(drawBufferIdx), loadops[plsIdx]); in onBegin() 882 GLuint drawBufferIdx = GetDrawBufferIdx(caps, i); in onBegin() local [all …]
|
D | validationES3.h | 81 GLuint drawBufferIdx,
|
D | Framebuffer.cpp | 661 const FramebufferAttachment *FramebufferState::getDrawBuffer(size_t drawBufferIdx) const in getDrawBuffer() 663 ASSERT(drawBufferIdx < mDrawBufferStates.size()); in getDrawBuffer() 664 if (mDrawBufferStates[drawBufferIdx] != GL_NONE) in getDrawBuffer() 668 ASSERT(mDrawBufferStates[drawBufferIdx] == GL_COLOR_ATTACHMENT0 + drawBufferIdx || in getDrawBuffer() 669 (drawBufferIdx == 0 && mDrawBufferStates[drawBufferIdx] == GL_BACK)); in getDrawBuffer() 671 if (mDrawBufferStates[drawBufferIdx] == GL_BACK) in getDrawBuffer() 677 return getColorAttachment(mDrawBufferStates[drawBufferIdx] - GL_COLOR_ATTACHMENT0); in getDrawBuffer()
|
D | Framebuffer.h | 102 const FramebufferAttachment *getDrawBuffer(size_t drawBufferIdx) const;
|
D | validationES2.cpp | 2605 for (GLuint drawBufferIdx = 0; drawBufferIdx < fbo->getDrawbufferStateCount(); in ValidateClear() local 2606 drawBufferIdx++) in ValidateClear() 2608 if (!ValidateWebGLFramebufferAttachmentClearType(context, entryPoint, drawBufferIdx, in ValidateClear()
|
D | validationES3.cpp | 5295 GLuint drawBufferIdx, in ValidateDrawBufferIndexIfActivePLS() argument 5307 if (drawBufferIdx >= state.getCaps().maxColorAttachmentsWithActivePixelLocalStorage) in ValidateDrawBufferIndexIfActivePLS() 5313 if (drawBufferIdx >= in ValidateDrawBufferIndexIfActivePLS()
|