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

  /external/skia/src/gpu/
GrPathRendererChain.cpp 38 DrawType drawType,
43 bool antiAlias = (kColorAntiAlias_DrawType == drawType ||
44 kStencilAndColorAntiAlias_DrawType == drawType);
51 if (kStencilOnly_DrawType == drawType) {
53 } else if (kStencilAndColor_DrawType == drawType ||
54 kStencilAndColorAntiAlias_DrawType == drawType) {
GrContext.cpp     [all...]
  /external/skia/include/gpu/
GrPathRendererChain.h 48 enum DrawType {
63 DrawType drawType,
GrContext.h     [all...]
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLESvalidate.h 30 static bool drawType(GLenum mode);
  /external/skia/legacy/src/core/
SkPicture.cpp 32 // enable SK_DEBUG_TRACE to trace DrawType elements when
44 const char* DrawTypeToString(DrawType drawType) {
45 switch (drawType) {
46 case UNUSED: SkDebugf("DrawType UNUSED\n"); SkASSERT(0); break;
73 SkDebugf("DrawType error 0x%08x\n", drawType);
SkPictureRecord.h 101 void addDraw(DrawType drawType) {
103 SkDebugf("add %s\n", DrawTypeToString(drawType));
105 fWriter.writeInt(drawType);
SkPicturePlayback.h 144 int dumpDrawType(char* bufferPtr, char* buffer, DrawType drawType);
SkPicturePlayback.cpp     [all...]
SkCanvas.cpp 302 bool next(SkDrawFilter::Type drawType);
315 bool AutoDrawLooper::next(SkDrawFilter::Type drawType) {
328 fFilter->filter(paint, drawType);
    [all...]
  /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);
  /external/skia/src/core/
SkPicture.cpp 37 // enable SK_DEBUG_TRACE to trace DrawType elements when
49 const char* DrawTypeToString(DrawType drawType) {
50 switch (drawType) {
51 case UNUSED: SkDebugf("DrawType UNUSED\n"); SkASSERT(0); break;
78 SkDebugf("DrawType error 0x%08x\n", drawType);
SkPictureRecord.h 107 void addDraw(DrawType drawType) {
111 SkDebugf("add %s\n", DrawTypeToString(drawType));
113 fWriter.writeInt(drawType);
SkPicturePlayback.h 178 int dumpDrawType(char* bufferPtr, char* buffer, DrawType drawType);
SkPicturePlayback.cpp     [all...]
SkPictureRecord.cpp 107 // Return the size of the specified drawType's recorded block, or 0 if this verb
109 static inline uint32_t getSkipableSize(unsigned drawType) {
150 SkASSERT((unsigned)drawType <= (unsigned)LAST_DRAWTYPE_ENUM);
151 return gSizes[drawType] * sizeof(uint32_t);
SkCanvas.cpp 378 bool next(SkDrawFilter::Type drawType) {
386 return this->doNext(drawType);
402 bool doNext(SkDrawFilter::Type drawType);
405 bool AutoDrawLooper::doNext(SkDrawFilter::Type drawType) {
421 if (!fFilter->filter(paint, drawType)) {
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLESvalidate.cpp 99 bool GLESvalidate::drawType(GLenum mode) {
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmImp.cpp 576 SET_ERROR_IF((!GLEScmValidate::drawMode(mode) || !GLEScmValidate::drawType(type)),GL_INVALID_ENUM)
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp 589 SET_ERROR_IF(!(GLESv2Validate::drawMode(mode) && GLESv2Validate::drawType(type)),GL_INVALID_ENUM);
    [all...]

Completed in 317 milliseconds