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

1 2

  /external/chromium_org/third_party/skia/src/gpu/
GrPathRendererChain.cpp 37 DrawType drawType,
42 bool antiAlias = (kColorAntiAlias_DrawType == drawType ||
43 kStencilAndColorAntiAlias_DrawType == drawType);
50 if (kStencilOnly_DrawType == drawType) {
52 } else if (kStencilAndColor_DrawType == drawType ||
53 kStencilAndColorAntiAlias_DrawType == drawType) {
  /external/skia/src/gpu/
GrPathRendererChain.cpp 37 DrawType drawType,
42 bool antiAlias = (kColorAntiAlias_DrawType == drawType ||
43 kStencilAndColorAntiAlias_DrawType == drawType);
50 if (kStencilOnly_DrawType == drawType) {
52 } else if (kStencilAndColor_DrawType == drawType ||
53 kStencilAndColorAntiAlias_DrawType == drawType) {
  /external/chromium_org/third_party/skia/include/gpu/
GrPathRendererChain.h 46 enum DrawType {
61 DrawType drawType,
GrContext.h     [all...]
  /external/skia/include/gpu/
GrPathRendererChain.h 46 enum DrawType {
61 DrawType drawType,
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLESvalidate.h 30 static bool drawType(GLenum mode);
  /external/chromium_org/third_party/skia/src/core/
SkPictureRecord.h 133 * Write the 'drawType' operation and chunk size to the skp. 'size'
144 size_t addDraw(DrawType drawType, size_t* size) {
150 SkDebugf("add %s\n", DrawTypeToString(drawType));
154 SkASSERT(((uint8_t) drawType) == drawType);
157 fWriter.writeInt(PACK_8_24(drawType, MASK_24));
161 fWriter.writeInt(PACK_8_24(drawType, SkToU32(*size)));
SkPicture.cpp 45 // enable SK_DEBUG_TRACE to trace DrawType elements when
57 const char* DrawTypeToString(DrawType drawType) {
58 switch (drawType) {
59 case UNUSED: SkDebugf("DrawType UNUSED\n"); SkASSERT(0); break;
97 SkDebugf("DrawType error 0x%08x\n", drawType);
SkPicturePlayback.cpp 716 static DrawType read_op_and_size(SkReader32* reader, uint32_t* size) {
729 return (DrawType) op;
850 SkDEBUGCODE(DrawType op =) read_op_and_size(&reader, &size);
889 SkDEBUGCODE(DrawType op =) read_op_and_size(&reader, &size);
929 DrawType op = read_op_and_size(&reader, &size);
948 SkDEBUGCODE(DrawType op =) read_op_and_size(&reader, &size);
961 DrawType op = read_op_and_size(&reader, &size);
    [all...]
SkPicturePlayback.h 265 int dumpDrawType(char* bufferPtr, char* buffer, DrawType drawType);
  /external/skia/src/core/
SkPictureRecord.h 133 * Write the 'drawType' operation and chunk size to the skp. 'size'
144 size_t addDraw(DrawType drawType, size_t* size) {
150 SkDebugf("add %s\n", DrawTypeToString(drawType));
154 SkASSERT(((uint8_t) drawType) == drawType);
157 fWriter.writeInt(PACK_8_24(drawType, MASK_24));
161 fWriter.writeInt(PACK_8_24(drawType, SkToU32(*size)));
SkPicture.cpp 45 // enable SK_DEBUG_TRACE to trace DrawType elements when
57 const char* DrawTypeToString(DrawType drawType) {
58 switch (drawType) {
59 case UNUSED: SkDebugf("DrawType UNUSED\n"); SkASSERT(0); break;
97 SkDebugf("DrawType error 0x%08x\n", drawType);
SkPicturePlayback.cpp 716 static DrawType read_op_and_size(SkReader32* reader, uint32_t* size) {
729 return (DrawType) op;
850 SkDEBUGCODE(DrawType op =) read_op_and_size(&reader, &size);
889 SkDEBUGCODE(DrawType op =) read_op_and_size(&reader, &size);
929 DrawType op = read_op_and_size(&reader, &size);
948 SkDEBUGCODE(DrawType op =) read_op_and_size(&reader, &size);
961 DrawType op = read_op_and_size(&reader, &size);
    [all...]
SkPicturePlayback.h 265 int dumpDrawType(char* bufferPtr, char* buffer, DrawType drawType);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgramDesc.cpp 40 GrGpu::DrawType drawType,
117 bool hasVertexCode = !(GrGpu::kDrawPath_DrawType == drawType ||
118 GrGpu::kDrawPaths_DrawType == drawType);
138 header->fEmitsPointSize = GrGpu::kDrawPoints_DrawType == drawType;
GrGLProgramDesc.h 68 GrGpu::DrawType drawType,
  /external/skia/src/gpu/gl/
GrGLProgramDesc.cpp 40 GrGpu::DrawType drawType,
117 bool hasVertexCode = !(GrGpu::kDrawPath_DrawType == drawType ||
118 GrGpu::kDrawPaths_DrawType == drawType);
138 header->fEmitsPointSize = GrGpu::kDrawPoints_DrawType == drawType;
GrGLProgramDesc.h 68 GrGpu::DrawType drawType,
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
OpaqueRegionSkia.cpp 125 static inline bool paintIsOpaque(const SkPaint& paint, OpaqueRegionSkia::DrawType drawType, const SkBitmap* bitmap)
129 bool checkFillOnly = drawType != OpaqueRegionSkia::FillOrStroke;
282 void OpaqueRegionSkia::didDraw(const GraphicsContext* context, const SkRect& rect, const SkPaint& paint, const SkBitmap* sourceBitmap, bool fillsBounds, DrawType drawType)
299 bool drawsOpaque = paintIsOpaque(paint, drawType, sourceBitmap);
309 void OpaqueRegionSkia::didDrawUnbounded(const GraphicsContext* context, const SkPaint& paint, DrawType drawType)
312 bool drawsOpaque = paintIsOpaque(paint, drawType, 0);
  /sdk/emulator/opengl/tests/translator_tests/GLES_CM/
triangleCM.cpp 347 GLenum drawType;
371 drawType = GL_POINTS;
374 drawType = GL_TRIANGLES;
422 glDrawElements(drawType, 3, GL_UNSIGNED_SHORT, indices);
425 glDrawElements(drawType, 3, GL_UNSIGNED_SHORT, 0);
428 glDrawArrays(drawType, 0, 3);
  /external/deqp/modules/egl/
teglPreservingSwapTests.cpp 65 enum DrawType
72 PreservingSwapTest (EglTestContext& eglTestCtx, bool preserveColorbuffer, bool readPixelsBeforeSwap, DrawType preSwapDrawType, DrawType postSwapDrawType, const char* name, const char* description);
83 const DrawType m_preSwapDrawType;
84 const DrawType m_postSwapDrawType;
105 void render (int width, int height, float x1, float y1, float x2, float y2, PreservingSwapTest::DrawType drawType);
204 void GLES2Program::render (int width, int height, float x1, float y1, float x2, float y2, PreservingSwapTest::DrawType drawType)
206 if (drawType == PreservingSwapTest::DRAWTYPE_GLES2_RENDER
    [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;
glsStateChangePerfTestCases.cpp 211 StateChangePerformanceCase::StateChangePerformanceCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, DrawType drawType, int drawCallCount, int triangleCount)
214 , m_drawType (drawType)
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLESvalidate.cpp 99 bool GLESvalidate::drawType(GLenum mode) {
  /external/deqp/modules/gles2/performance/
es2pDrawCallBatchingTests.cpp 992 for (int drawType = 0; drawType < 2; drawType++)
994 bool drawElements = (drawType == 1);
    [all...]

Completed in 796 milliseconds

1 2