Searched refs:noopDraw (Results 1 – 8 of 8) sorted by relevance
/third_party/skia/src/gpu/mock/ |
D | GrMockOpsRenderPass.h | 45 void onDraw(int, int) override { this->noopDraw(); } in onDraw() 46 void onDrawIndexed(int, int, uint16_t, uint16_t, int) override { this->noopDraw(); } in onDrawIndexed() 47 void onDrawInstanced(int, int, int, int) override { this->noopDraw(); } in onDrawInstanced() 48 void onDrawIndexedInstanced(int, int, int, int, int) override { this->noopDraw(); } in onDrawIndexedInstanced() 49 void onDrawIndirect(const GrBuffer*, size_t, int) override { this->noopDraw(); } in onDrawIndirect() 50 void onDrawIndexedIndirect(const GrBuffer*, size_t, int) override { this->noopDraw(); } in onDrawIndexedIndirect() 55 void noopDraw() { in noopDraw() function
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Context.inl.h | 64 ANGLE_INLINE bool Context::noopDraw(PrimitiveMode mode, GLsizei count) in noopDraw() function 106 if (noopDraw(mode, count)) in drawArrays() 122 if (noopDraw(mode, count)) in drawElements()
|
D | Context.h | 573 bool noopDraw(PrimitiveMode mode, GLsizei count);
|
D | Context.cpp | 2281 if (noopDraw(mode, count)) in drawRangeElements() 3603 return (instanceCount == 0) || noopDraw(mode, count); in noopDrawInstanced() 5485 if (noopDraw(mode, counts[drawID])) in multiDrawArrays() 5500 if (noopDraw(mode, counts[drawID])) in multiDrawArrays() 5565 if (noopDraw(mode, counts[drawID])) in multiDrawElements() 5579 if (noopDraw(mode, counts[drawID])) in multiDrawElements() 5638 if (noopDraw(mode, count)) in drawArraysInstancedBaseInstance() 5668 if (noopDraw(mode, count)) in drawElementsInstancedBaseVertexBaseInstance()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Context.inl.h | 78 ANGLE_INLINE bool Context::noopDraw(PrimitiveMode mode, GLsizei count) const in noopDraw() function 126 if (noopDraw(mode, count)) in drawArrays() 143 if (noopDraw(mode, count)) in drawElements()
|
D | Context.h | 613 bool noopDraw(PrimitiveMode mode, GLsizei count) const;
|
D | Context.cpp | 2563 if (noopDraw(mode, count)) in drawElementsBaseVertex() 2603 if (noopDraw(mode, count)) in drawRangeElements() 2624 if (noopDraw(mode, count)) in drawRangeElementsBaseVertex() 4100 return (instanceCount == 0) || noopDraw(mode, count); in noopDrawInstanced() 6520 if (noopDraw(mode, count)) in drawArraysInstancedBaseInstance() 6553 if (noopDraw(mode, count)) in drawElementsInstancedBaseVertexBaseInstance()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | renderer_utils.h | 473 #define ANGLE_NOOP_DRAW_ context->noopDraw(mode, counts[drawID])
|