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

1 2 3 4

  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrFakeRefObj.h 32 fID = ++fNextID;
56 GrGLuint getID() const { return fID; }
73 GrGLuint fID; // globally unique ID
  /external/skia/src/gpu/gl/debug/
GrFakeRefObj.h 32 fID = ++fNextID;
56 GrGLuint getID() const { return fID; }
73 GrGLuint fID; // globally unique ID
  /external/chromium_org/third_party/skia/include/ports/
SkFontConfigInterface.h 49 FontIdentity() : fID(0), fTTCIndex(0) {}
52 return fID == other.fID &&
60 uint32_t fID;
  /external/skia/include/ports/
SkFontConfigInterface.h 47 FontIdentity() : fID(0), fTTCIndex(0) {}
50 return fID == other.fID &&
58 uint32_t fID;
  /external/chromium_org/third_party/skia/src/gpu/
GrTraceMarker.cpp 48 if (lastMarker.fID != -1) {
50 marker_string.appendS32(lastMarker.fID);
66 if (1 == numMarkers && -1 == this->fMarkerArray[0].fID) {
79 if (currMarker.fID != -1) {
81 marker_string.appendS32(currMarker.fID);
84 } else if (currMarker.fID != prevMarkerID) {
86 marker_string.appendS32(currMarker.fID);
88 prevMarkerID = currMarker.fID;
GrTraceMarker.h 17 GrGpuTraceMarker(const char* marker, int idCounter) : fMarker(marker), fID(idCounter) {}
20 return this->fMarker < rhs.fMarker || (this->fMarker == rhs.fMarker && this->fID < rhs.fID);
24 return (this->fID == rhs.fID && this->fMarker == rhs.fMarker);
28 int fID;
  /external/skia/src/gpu/
GrTraceMarker.h 17 GrGpuTraceMarker(const char* marker, int idCounter) : fMarker(marker), fID(idCounter) {}
20 return this->fMarker < rhs.fMarker || (this->fMarker == rhs.fMarker && this->fID < rhs.fID);
24 return (this->fID == rhs.fID && this->fMarker == rhs.fMarker);
28 int fID;
GrTraceMarker.cpp 51 if (1 == numMarkers && -1 == this->fMarkerArray[0].fID) {
65 marker_string.appendS32(currMarker.fID);
67 } else if (currMarker.fID != prevMarkerID) {
69 marker_string.appendS32(currMarker.fID);
71 prevMarkerID = currMarker.fID;
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLBufferImpl.h 24 GrGLuint fID; // set to 0 to indicate buffer is CPU-backed and not a VBO.
32 SkASSERT(0 == fDesc.fID);
38 GrGLuint bufferID() const { return fDesc.fID; }
GrGLVertexArray.cpp 73 , fID(id)
80 fID = 0;
85 if (0 != fID) {
86 GL_CALL(DeleteVertexArrays(1, &fID));
87 GPUGL->notifyVertexArrayDelete(fID);
88 fID = 0;
94 if (0 == fID) {
97 GPUGL->bindVertexArray(fID);
GrGLBufferImpl.cpp 27 if (0 == desc.fID) {
44 } else if (fDesc.fID && !fDesc.fIsWrapped) {
45 GL_CALL(gpu, DeleteBuffers(1, &fDesc.fID));
47 gpu->notifyVertexBufferDelete(fDesc.fID);
50 gpu->notifyIndexBufferDelete(fDesc.fID);
52 fDesc.fID = 0;
60 fDesc.fID = 0;
71 gpu->bindVertexBuffer(fDesc.fID);
74 gpu->bindIndexBufferAndDefaultVertexArray(fDesc.fID);
82 if (0 == fDesc.fID) {
    [all...]
  /external/skia/src/gpu/gl/
GrGLBufferImpl.h 24 GrGLuint fID; // set to 0 to indicate buffer is CPU-backed and not a VBO.
32 SkASSERT(0 == fDesc.fID);
38 GrGLuint bufferID() const { return fDesc.fID; }
GrGLVertexArray.cpp 73 , fID(id)
79 fID = 0;
84 if (0 != fID) {
85 GL_CALL(DeleteVertexArrays(1, &fID));
86 GPUGL->notifyVertexArrayDelete(fID);
87 fID = 0;
93 if (0 == fID) {
96 GPUGL->bindVertexArray(fID);
GrGLBufferImpl.cpp 27 if (0 == desc.fID) {
44 } else if (fDesc.fID && !fDesc.fIsWrapped) {
45 GL_CALL(gpu, DeleteBuffers(1, &fDesc.fID));
47 gpu->notifyVertexBufferDelete(fDesc.fID);
50 gpu->notifyIndexBufferDelete(fDesc.fID);
52 fDesc.fID = 0;
60 fDesc.fID = 0;
71 gpu->bindVertexBuffer(fDesc.fID);
74 gpu->bindIndexBufferAndDefaultVertexArray(fDesc.fID);
82 if (0 == fDesc.fID) {
    [all...]
  /external/skia/src/core/
SkGlyph.h 28 uint32_t fID;
37 fID = id;
76 return ID2Code(fID);
80 unsigned code = ID2Code(fID);
86 return ID2SubX(fID);
90 return SubToFixed(ID2SubX(fID));
94 return SubToFixed(ID2SubY(fID));
101 fImage, fPath, fID, fMaskFormat fields.
  /external/chromium_org/third_party/skia/tests/
LListTest.cpp 15 ListElement(int id) : fID(id) {
17 bool operator== (const ListElement& other) { return fID == other.fID; }
24 int fID;
77 REPORTER_ASSERT(reporter, cur->fID == 3-i);
82 REPORTER_ASSERT(reporter, cur->fID == i);
118 REPORTER_ASSERT(reporter, cur->fID == i);
157 REPORTER_ASSERT(reporter, iter1.get()->fID == iter2.get()->fID);
160 REPORTER_ASSERT(reporter, iter3.get()->fID == iter1.get()->fID)
    [all...]
GrAllocatorTest.cpp 15 C() : fID(-1) { ++gInstCnt; }
16 C(int id) : fID(id) { ++gInstCnt; }
18 int fID;
58 REPORTER_ASSERT(reporter, iter.next() && i == iter.get()->fID);
62 REPORTER_ASSERT(reporter, cnt-1 == allocator->back().fID);
  /external/skia/tests/
LListTest.cpp 15 ListElement(int id) : fID(id) {
17 bool operator== (const ListElement& other) { return fID == other.fID; }
24 int fID;
77 REPORTER_ASSERT(reporter, cur->fID == 3-i);
82 REPORTER_ASSERT(reporter, cur->fID == i);
118 REPORTER_ASSERT(reporter, cur->fID == i);
157 REPORTER_ASSERT(reporter, iter1.get()->fID == iter2.get()->fID);
160 REPORTER_ASSERT(reporter, iter3.get()->fID == iter1.get()->fID)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkGlyph.h 28 uint32_t fID;
38 fID = id;
78 return ID2Code(fID);
82 return ID2SubX(fID);
86 return SubToFixed(ID2SubX(fID));
90 return SubToFixed(ID2SubY(fID));
97 fImage, fPath, fID, fMaskFormat fields.
  /external/chromium_org/third_party/skia/include/views/
SkEventSink.h 33 SkEventSinkID getSinkID() const { return fID; }
103 SkEventSinkID fID;
  /external/skia/include/views/
SkEventSink.h 33 SkEventSinkID getSinkID() const { return fID; }
103 SkEventSinkID fID;
  /external/chromium_org/skia/ext/
skia_utils_base.cc 34 identity->fID = reply_id;
47 return pickle->WriteUInt32(identity.fID) &&
  /external/chromium_org/third_party/skia/bench/
GrResourceCacheBench.cpp 29 , fID(id) {
36 return 100 + ((fID % 1 == 0) ? -5 : 6);
43 int fID;
54 , fID(id) {
61 return 100 + ((fID % 1 == 0) ? -40 : 33);
68 int fID;
122 if (static_cast<TextureResource*>(item)->fID != k) {
136 if (static_cast<TextureResource*>(item)->fID != k) {
  /external/skia/bench/
GrResourceCacheBench.cpp 28 : fID(id) {
32 return 100 + ((fID % 1 == 0) ? -5 : 6);
43 int fID;
53 : fID(id) {
57 return 100 + ((fID % 1 == 0) ? -40 : 33);
68 int fID;
122 if (static_cast<TextureResource*>(item)->fID != k) {
136 if (static_cast<TextureResource*>(item)->fID != k) {
  /external/chromium_org/third_party/skia/src/pathops/
SkOpAngle.h 89 int debugID() const { return fID; }
92 fID = id;
143 int fID;

Completed in 703 milliseconds

1 2 3 4