/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) {
|
GrContext.cpp | [all...] |
/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) {
|
GrContext.cpp | [all...] |
/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,
|
GrContext.h | [all...] |
/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 | 122 * Write the 'drawType' operation and chunk size to the skp. 'size' 133 size_t addDraw(DrawType drawType, uint32_t* size) { 139 SkDebugf("add %s\n", DrawTypeToString(drawType)); 143 SkASSERT(((uint8_t) drawType) == drawType); 146 fWriter.writeInt(PACK_8_24(drawType, MASK_24)); 150 fWriter.writeInt(PACK_8_24(drawType, *size));
|
SkPicture.cpp | 35 // enable SK_DEBUG_TRACE to trace DrawType elements when 47 const char* DrawTypeToString(DrawType drawType) { 48 switch (drawType) { 49 case UNUSED: SkDebugf("DrawType UNUSED\n"); SkASSERT(0); break; 87 SkDebugf("DrawType error 0x%08x\n", drawType);
|
SkPicturePlayback.h | 183 int dumpDrawType(char* bufferPtr, char* buffer, DrawType drawType);
|
SkPicturePlayback.cpp | 689 static DrawType read_op_and_size(SkReader32* reader, uint32_t* size) { 702 return (DrawType) op; 778 DrawType op = read_op_and_size(&reader, &size); [all...] |
SkCanvas.cpp | 379 bool next(SkDrawFilter::Type drawType) { 387 return this->doNext(drawType); 403 bool doNext(SkDrawFilter::Type drawType); 406 bool AutoDrawLooper::doNext(SkDrawFilter::Type drawType) { 422 if (!fFilter->filter(paint, drawType)) { [all...] |
/external/skia/src/core/ |
SkPictureRecord.h | 122 * Write the 'drawType' operation and chunk size to the skp. 'size' 133 size_t addDraw(DrawType drawType, uint32_t* size) { 139 SkDebugf("add %s\n", DrawTypeToString(drawType)); 143 SkASSERT(((uint8_t) drawType) == drawType); 146 fWriter.writeInt(PACK_8_24(drawType, MASK_24)); 150 fWriter.writeInt(PACK_8_24(drawType, *size));
|
SkPicture.cpp | 35 // enable SK_DEBUG_TRACE to trace DrawType elements when 47 const char* DrawTypeToString(DrawType drawType) { 48 switch (drawType) { 49 case UNUSED: SkDebugf("DrawType UNUSED\n"); SkASSERT(0); break; 87 SkDebugf("DrawType error 0x%08x\n", drawType);
|
SkPicturePlayback.h | 183 int dumpDrawType(char* bufferPtr, char* buffer, DrawType drawType);
|
SkPicturePlayback.cpp | 689 static DrawType read_op_and_size(SkReader32* reader, uint32_t* size) { 702 return (DrawType) op; 778 DrawType op = read_op_and_size(&reader, &size); [all...] |
SkCanvas.cpp | 379 bool next(SkDrawFilter::Type drawType) { 387 return this->doNext(drawType); 403 bool doNext(SkDrawFilter::Type drawType); 406 bool AutoDrawLooper::doNext(SkDrawFilter::Type drawType) { 422 if (!fFilter->filter(paint, drawType)) { [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/ |
OpaqueRegionSkia.cpp | 122 static inline bool paintIsOpaque(const SkPaint& paint, OpaqueRegionSkia::DrawType drawType, const SkBitmap* bitmap) 126 bool checkFillOnly = drawType != OpaqueRegionSkia::FillOrStroke; 274 void OpaqueRegionSkia::didDraw(const GraphicsContext* context, const SkRect& rect, const SkPaint& paint, const SkBitmap* sourceBitmap, bool fillsBounds, DrawType drawType) 290 bool drawsOpaque = paintIsOpaque(paint, drawType, sourceBitmap); 300 void OpaqueRegionSkia::didDrawUnbounded(const GraphicsContext* context, const SkPaint& paint, DrawType drawType) 302 bool drawsOpaque = paintIsOpaque(paint, drawType, 0);
|
/sdk/emulator/opengl/tests/translator_tests/GLES_CM/ |
triangleCM.cpp | 350 GLenum drawType; 374 drawType = GL_POINTS; 377 drawType = GL_TRIANGLES; 425 glDrawElements(drawType, 3, GL_UNSIGNED_SHORT, indices); 428 glDrawElements(drawType, 3, GL_UNSIGNED_SHORT, 0); 431 glDrawArrays(drawType, 0, 3);
|
/sdk/emulator/opengl/host/libs/Translator/GLcommon/ |
GLESvalidate.cpp | 99 bool GLESvalidate::drawType(GLenum mode) {
|
/external/chromium_org/third_party/skia/src/utils/debugger/ |
SkDrawCommand.h | 19 SkDrawCommand(DrawType drawType); 43 DrawType getType() { return fDrawType; }; 47 static const char* GetCommandString(DrawType type); 50 DrawType fDrawType;
|
/external/skia/src/utils/debugger/ |
SkDrawCommand.h | 19 SkDrawCommand(DrawType drawType); 43 DrawType getType() { return fDrawType; }; 47 static const char* GetCommandString(DrawType type); 50 DrawType fDrawType;
|
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/ |
GLEScmImp.cpp | 576 SET_ERROR_IF((!GLEScmValidate::drawMode(mode) || !GLEScmValidate::drawType(type)),GL_INVALID_ENUM) [all...] |