HomeSort by relevance Sort by last modified time
    Searched refs:drawType (Results 1 - 25 of 42) sorted by null

1 2

  /external/skia/src/gpu/
GrPathRendererChain.h 37 enum class DrawType {
48 DrawType drawType,
GrPathRendererChain.cpp 79 DrawType drawType,
86 if (DrawType::kStencil == drawType) {
88 } else if (DrawType::kStencilAndColor == drawType) {
GrDrawingManager.h 62 GrPathRendererChain::DrawType drawType,
  /external/skqp/src/gpu/
GrPathRendererChain.h 37 enum class DrawType {
48 DrawType drawType,
GrPathRendererChain.cpp 71 DrawType drawType,
78 if (DrawType::kStencil == drawType) {
80 } else if (DrawType::kStencilAndColor == drawType) {
GrDrawingManager.h 62 GrPathRendererChain::DrawType drawType,
  /external/swiftshader/src/OpenGL/libGLES_CM/
utilities.cpp 754 bool ConvertPrimitiveType(GLenum primitiveType, GLsizei elementCount, GLenum elementType, sw::DrawType &drawType, int &primitiveCount)
759 drawType = sw::DRAW_POINTLIST;
763 drawType = sw::DRAW_LINELIST;
767 drawType = sw::DRAW_LINELOOP;
771 drawType = sw::DRAW_LINESTRIP;
775 drawType = sw::DRAW_TRIANGLELIST;
779 drawType = sw::DRAW_TRIANGLESTRIP;
783 drawType = sw::DRAW_TRIANGLEFAN;
790 sw::DrawType elementSize
    [all...]
  /external/skia/src/core/
SkPictureRecord.h 89 * Write the 'drawType' operation and chunk size to the skp. 'size'
100 size_t addDraw(DrawType drawType, size_t* size) {
106 SkASSERT(((uint8_t) drawType) == drawType);
109 fWriter.writeInt(PACK_8_24(drawType, MASK_24));
113 fWriter.writeInt(PACK_8_24(drawType, SkToU32(*size)));
  /external/skqp/src/core/
SkPictureRecord.h 89 * Write the 'drawType' operation and chunk size to the skp. 'size'
100 size_t addDraw(DrawType drawType, size_t* size) {
106 SkASSERT(((uint8_t) drawType) == drawType);
109 fWriter.writeInt(PACK_8_24(drawType, MASK_24));
113 fWriter.writeInt(PACK_8_24(drawType, SkToU32(*size)));
  /external/deqp/modules/egl/
teglPreservingSwapTests.cpp 70 enum DrawType
77 PreservingSwapTest (EglTestContext& eglTestCtx, bool preserveColorbuffer, bool readPixelsBeforeSwap, DrawType preSwapDrawType, DrawType postSwapDrawType, const char* name, const char* description);
88 const DrawType m_preSwapDrawType;
89 const DrawType m_postSwapDrawType;
111 void render (int width, int height, float x1, float y1, float x2, float y2, PreservingSwapTest::DrawType drawType);
160 void GLES2Program::render (int width, int height, float x1, float y1, float x2, float y2, PreservingSwapTest::DrawType drawType)
162 if (drawType == PreservingSwapTest::DRAWTYPE_GLES2_RENDER
    [all...]
teglBufferAgeTests.cpp 76 enum DrawType
93 const vector<DrawType>& oddFrameDrawType,
94 const vector<DrawType>& evenFrameDrawType,
111 const vector<DrawType> m_oddFrameDrawType;
112 const vector<DrawType> m_evenFrameDrawType;
145 DrawCommand (const BufferAgeTest::DrawType drawType_, const ColoredRect& rect_);
146 BufferAgeTest::DrawType drawType;
150 DrawCommand::DrawCommand (const BufferAgeTest::DrawType drawType_, const ColoredRect& rect_)
151 : drawType(drawType_
    [all...]
teglPartialUpdateTests.cpp 76 enum DrawType
83 const vector<DrawType>& oddFrameDrawType,
84 const vector<DrawType>& evenFrameDrawType,
103 const vector<DrawType> m_oddFrameDrawType;
104 const vector<DrawType> m_evenFrameDrawType;
133 DrawCommand (const PartialUpdateTest::DrawType drawType_, const ColoredRect& rect_);
134 PartialUpdateTest::DrawType drawType;
138 DrawCommand::DrawCommand (const PartialUpdateTest::DrawType drawType_, const ColoredRect& rect_)
139 : drawType (drawType_
    [all...]
  /external/skia/gm/
blurignorexform.cpp 20 enum class DrawType {
26 BlurIgnoreXformGM(DrawType drawType) : fDrawType(drawType) { }
34 DrawType::kCircle == fDrawType ? "circle"
35 : DrawType::kRect == fDrawType ? "rect" : "rrect");
76 if (DrawType::kCircle == fDrawType) {
78 } else if (DrawType::kRect == fDrawType) {
124 DrawType fDrawType;
141 DEF_GM(return new BlurIgnoreXformGM(BlurIgnoreXformGM::DrawType::kCircle);
    [all...]
  /external/skqp/gm/
blurignorexform.cpp 20 enum class DrawType {
26 BlurIgnoreXformGM(DrawType drawType) : fDrawType(drawType) { }
34 DrawType::kCircle == fDrawType ? "circle"
35 : DrawType::kRect == fDrawType ? "rect" : "rrect");
76 if (DrawType::kCircle == fDrawType) {
78 } else if (DrawType::kRect == fDrawType) {
124 DrawType fDrawType;
141 DEF_GM(return new BlurIgnoreXformGM(BlurIgnoreXformGM::DrawType::kCircle);
    [all...]
  /external/deqp/modules/glshared/
glsStateChangePerfTestCases.hpp 48 enum DrawType
55 StateChangePerformanceCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, DrawType drawType, int drawCallCount, int triangleCount);
84 const DrawType m_drawType;
  /external/skia/bench/
AlternatingColorPatternBench.cpp 35 enum DrawType {
94 DrawType fDrawType;
98 AlternatingColorPatternBench(ColorPattern pattern1, ColorPattern pattern2, DrawType drawType) {
103 kRect_DrawType == drawType ? "rect" : "path");
104 fDrawType = drawType;
  /external/skqp/bench/
AlternatingColorPatternBench.cpp 35 enum DrawType {
94 DrawType fDrawType;
98 AlternatingColorPatternBench(ColorPattern pattern1, ColorPattern pattern2, DrawType drawType) {
103 kRect_DrawType == drawType ? "rect" : "path");
104 fDrawType = drawType;
  /external/swiftshader/src/D3D8/
Direct3DDevice8.cpp 905 sw::DrawType drawType;
911 case D3DPT_POINTLIST: drawType = sw::DRAW_INDEXEDPOINTLIST32; break;
912 case D3DPT_LINELIST: drawType = sw::DRAW_INDEXEDLINELIST32; break;
913 case D3DPT_LINESTRIP: drawType = sw::DRAW_INDEXEDLINESTRIP32; break;
914 case D3DPT_TRIANGLELIST: drawType = sw::DRAW_INDEXEDTRIANGLELIST32; break;
915 case D3DPT_TRIANGLESTRIP: drawType = sw::DRAW_INDEXEDTRIANGLESTRIP32; break;
916 case D3DPT_TRIANGLEFAN: drawType = sw::DRAW_INDEXEDTRIANGLEFAN32; break;
925 case D3DPT_POINTLIST: drawType = sw::DRAW_INDEXEDPOINTLIST16; break;
926 case D3DPT_LINELIST: drawType = sw::DRAW_INDEXEDLINELIST16; break
    [all...]
  /external/swiftshader/src/Device/
Context.cpp 67 switch(drawType)
99 switch(drawType)
131 switch(drawType)
Context.hpp 55 enum DrawType ENUM_UNDERLYING_TYPE_UNSIGNED_INT
161 DrawType drawType;
VertexProcessor.hpp 171 const State update(DrawType drawType);
Renderer.hpp 253 void draw(DrawType drawType, unsigned int indexOffset, unsigned int count, bool update = true);
440 AtomicInt drawType;
  /external/swiftshader/src/D3D9/
Direct3DDevice9.cpp 1014 sw::DrawType drawType;
1020 case D3DPT_POINTLIST: drawType = sw::DRAW_INDEXEDPOINTLIST32; break;
1021 case D3DPT_LINELIST: drawType = sw::DRAW_INDEXEDLINELIST32; break;
1022 case D3DPT_LINESTRIP: drawType = sw::DRAW_INDEXEDLINESTRIP32; break;
1023 case D3DPT_TRIANGLELIST: drawType = sw::DRAW_INDEXEDTRIANGLELIST32; break;
1024 case D3DPT_TRIANGLESTRIP: drawType = sw::DRAW_INDEXEDTRIANGLESTRIP32; break;
1025 case D3DPT_TRIANGLEFAN: drawType = sw::DRAW_INDEXEDTRIANGLEFAN32; break;
1034 case D3DPT_POINTLIST: drawType = sw::DRAW_INDEXEDPOINTLIST16; break;
1035 case D3DPT_LINELIST: drawType = sw::DRAW_INDEXEDLINELIST16; break
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
utilities.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawIndirectTest.cpp 65 enum DrawType
80 DrawType drawType;
112 const DrawType m_drawType;
244 , m_drawType (testSpec.drawType)
257 if (testSpec.drawType == DRAW_TYPE_INDEXED)
957 testSpec.drawType = static_cast<DrawType>(drawTypeIdx);
    [all...]

Completed in 1093 milliseconds

1 2