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

1 2 3

  /external/skia/src/gpu/gl/debug/
GrFakeRefObj.h 31 fID = ++fNextID;
51 GrGLuint getID() const { return fID; }
67 GrGLuint fID; // globally unique ID
  /external/skia/include/ports/
SkFontConfigInterface.h 49 FontIdentity() : fID(0), fTTCIndex(0) {}
52 return fID == other.fID &&
60 uint32_t fID;
  /external/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;
GrAtlas.h 38 int id() const { return fID; }
60 int fID;
GrGlyph.h 35 GrBatchAtlas::AtlasID fID;
45 fID = GrBatchAtlas::kInvalidAtlasID;
GrTessellatingPathRenderer.cpp 147 , fID (-1.0f)
159 float fID; // Identifier used for logging.
279 fTop->fID, fBottom->fID,
280 other.fTop->fID, other.fBottom->fID);
323 fID = gID++;
324 LOG("*** created Poly %d\n", fID);
391 LOG("addVertex() to %d at %g (%g, %g), %s side\n", fID, v->fID, v->fPoint.fX, v->fPoint.fY
    [all...]
GrBatchFontCache.h 114 return this->getAtlas(glyph->fMaskFormat)->hasID(glyph->fID);
125 updater->add(glyph->fID);
126 this->getAtlas(glyph->fMaskFormat)->setLastUseToken(glyph->fID, token);
GrAADistanceFieldPathRenderer.h 59 GrBatchAtlas::AtlasID fID;
GrTracing.h 33 traceMarker->fID = *marker_counter;
55 traceMarker->fID = *marker_counter;
  /external/skia/src/gpu/gl/
GrGLBufferImpl.h 23 GrGLuint fID; // set to 0 to indicate buffer is CPU-backed and not a VBO.
31 SkASSERT(0 == fDesc.fID);
37 GrGLuint bufferID() const { return fDesc.fID; }
GrGLBufferImpl.cpp 27 if (0 == desc.fID) {
44 } else if (fDesc.fID) {
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...]
GrGLVertexArray.cpp 70 : fID(id)
76 if (0 == fID) {
79 gpu->bindVertexArray(fID);
GrGLIndexBuffer.cpp 12 : INHERITED(gpu, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
GrGLVertexBuffer.cpp 12 : INHERITED(gpu, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
GrGLVertexArray.h 158 GrGLuint arrayID() const { return fID; }
163 GrGLuint fID;
  /external/skia/src/core/
SkGlyph.h 55 this->initCommon(glyph.fID);
92 return ID2Code(fID);
96 return ID2SubX(fID);
100 return SubToFixed(ID2SubX(fID));
104 return SubToFixed(ID2SubY(fID));
111 fImage, fPath, fID, fMaskFormat fields.
122 fID = id;
168 // accesses fID. Remove when fID accesses are cleaned up.
172 uint32_t fID;
    [all...]
SkGlyphCache.cpp 97 uniHashUsed += fCharToGlyphHash[i].fID != 0xFFFFFFFF ? sizeof(fCharToGlyphHash[0]) : 0;
132 // an fID value that will not match any id.
134 fCharToGlyphHash[i].fID = SkGlyph::kImpossibleID;
170 if (rec.fID == id) {
227 if (rec->fID != id) {
230 rec->fID = id;
250 if (glyph->fID != id) {
274 if (gptr[mid].fID > id) {
283 if (glyph->fID == id) {
287 SkASSERT(glyph->fID != SkGlyph::kImpossibleID)
    [all...]
  /external/skia/tests/
LListTest.cpp 16 ListElement(int id) : fID(id) {
18 bool operator== (const ListElement& other) { return fID == other.fID; }
25 int fID;
78 REPORTER_ASSERT(reporter, cur->fID == 3-i);
83 REPORTER_ASSERT(reporter, cur->fID == i);
119 REPORTER_ASSERT(reporter, cur->fID == i);
158 REPORTER_ASSERT(reporter, iter1.get()->fID == iter2.get()->fID);
161 REPORTER_ASSERT(reporter, iter3.get()->fID == iter1.get()->fID)
    [all...]
HashTest.cpp 95 CopyCounter() : fID(0), fCounter(NULL) {}
97 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {}
100 : fID(other.fID)
107 fID = other.fID;
113 return fID == other.fID;
117 uint32_t fID;
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/include/views/
SkEventSink.h 33 SkEventSinkID getSinkID() const { return fID; }
103 SkEventSinkID fID;
SkOSMenu.h 61 int getID() const { return fID; }
84 int fID;
  /external/skia/src/pathops/
SkOpAngle.h 42 return SkDEBUGRELEASE(fID, -1);
105 SkDEBUGCODE(fID = id);
144 SkDEBUGCODE(int fID);
  /frameworks/rs/driver/
rsdShaderCache.cpp 120 uint32_t fID = frag->getStateBasedShaderID(rsc);
123 if (!vID || !fID) {
128 if ((mEntries[ct]->vtx == vID) && (mEntries[ct]->frag == fID)) {
145 e->frag = fID;
151 glAttachShader(pgm, fID);

Completed in 224 milliseconds

1 2 3