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

1 2 3

  /external/skia/src/pdf/
SkBitmapKey.h 16 uint32_t fID;
18 return fID == rhs.fID && fSubset == rhs.fSubset;
32 fID = 0;
35 fID = fImage->uniqueID();
45 fID = 0;
50 void setID(uint32_t id) { fID = id; }
62 SkBitmapKey getKey() const { return SkBitmapKey{fSubset, fID}; }
74 uint32_t fID;
SkPDFDocument.h 80 sk_sp<SkPDFObject> fID;
  /external/skia/tools/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 48 FontIdentity() : fID(0), fTTCIndex(0) {}
51 return fID == other.fID &&
59 uint32_t fID;
  /external/skia/src/gpu/
GrTraceMarker.cpp 47 if (lastMarker.fID != -1) {
49 marker_string.appendS32(lastMarker.fID);
65 if (1 == numMarkers && -1 == this->fMarkerArray[0].fID) {
78 if (currMarker.fID != -1) {
80 marker_string.appendS32(currMarker.fID);
83 } else if (currMarker.fID != prevMarkerID) {
85 marker_string.appendS32(currMarker.fID);
87 prevMarkerID = currMarker.fID;
GrTraceMarker.h 15 GrGpuTraceMarker(const char* marker, int idCounter) : fMarker(marker), fID(idCounter) {}
18 return this->fMarker < rhs.fMarker || (this->fMarker == rhs.fMarker && this->fID < rhs.fID);
22 return (this->fID == rhs.fID && this->fMarker == rhs.fMarker);
26 int fID;
GrGlyph.h 35 GrDrawOpAtlas::AtlasID fID;
44 fID = GrDrawOpAtlas::kInvalidAtlasID;
GrTessellator.cpp 152 , fID (-1.0f)
166 float fID; // Identifier used for logging.
384 fTop->fID, fBottom->fID,
385 other.fTop->fID, other.fBottom->fID);
466 fID = gID++;
467 LOG("*** created Poly %d\n", fID);
547 e->fTop->fID, e->fBottom->fID, fID, side == kLeft_Side ? "left" : "right")
    [all...]
  /external/skia/tests/
LListTest.cpp 15 ListElement(int id) : fID(id) {
17 bool operator== (const ListElement& other) { return fID == other.fID; }
19 int fID;
72 REPORTER_ASSERT(reporter, cur->fID == 3-i);
77 REPORTER_ASSERT(reporter, cur->fID == i);
113 REPORTER_ASSERT(reporter, cur->fID == i);
143 REPORTER_ASSERT(reporter, iter1.get()->fID == iter2.get()->fID);
146 REPORTER_ASSERT(reporter, iter3.get()->fID == iter1.get()->fID)
    [all...]
EGLImageTest.cpp 68 externalTexture.fID = 0;
71 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
77 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
89 if (!backendTexture1 || !backendTexture1->fID) {
91 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
96 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
101 image = glCtx1->texture2DToEGLImage(backendTexture1->fID);
104 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
116 GR_GL_CALL(glCtx1->gl(), BindTexture(backendTexture1->fTarget, backendTexture1->fID));
129 externalTexture.fID = glCtx0->eglImageToExternalTexture(image)
    [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);
HashTest.cpp 113 CopyCounter() : fID(0), fCounter(nullptr) {}
115 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {}
118 : fID(other.fID)
125 fID = other.fID;
132 fID = other.fID;
138 return fID == other.fID;
    [all...]
  /external/skia/src/core/
SkGlyph.h 43 fID = code;
54 fID = ID;
57 constexpr SkPackedID() : fID(kImpossibleID) {}
60 return fID == that.fID;
67 return fID & kCodeMask;
71 return SubToFixed(ID2SubX(fID));
75 return SubToFixed(ID2SubY(fID));
79 return SkChecksum::CheapMix(fID);
82 // FIXME - This is needed because the Android framework directly accesses fID
    [all...]
  /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/include/gpu/
GrGpuResource.h 191 explicit UniqueID(uint32_t id) : fID(id) {}
193 uint32_t asUInt() const { return fID; }
196 return fID == other.fID;
202 void makeInvalid() { fID = SK_InvalidUniqueID; }
203 bool isInvalid() const { return SK_InvalidUniqueID == fID; }
206 uint32_t fID;
  /external/skia/src/gpu/gl/
GrGLTexture.cpp 91 SkASSERT(0 != idDesc.fInfo.fID);
99 if (fInfo.fID) {
101 GL_CALL(DeleteTextures(1, &fInfo.fID));
103 fInfo.fID = 0;
110 fInfo.fID = 0;
136 fInfo.fID = 0;
GrGLVertexArray.h 109 GrGLuint arrayID() const { return fID; }
114 GrGLuint fID;
GrGLVertexArray.cpp 113 : fID(id)
119 if (0 == fID) {
122 gpu->bindVertexArray(fID);
GrGLTexture.h 55 GrGLuint textureID() const { return fInfo.fID; }
  /external/skia/src/gpu/text/
GrTextBlobCache.h 100 uint32_t fID;
109 BlobIDCacheEntry() : fID(SK_InvalidGenID) {}
110 explicit BlobIDCacheEntry(uint32_t id) : fID(id) {}
113 return entry.fID;
118 SkASSERT(GrAtlasTextBlob::GetKey(*blob).fUniqueID == fID);
126 SkASSERT(GrAtlasTextBlob::GetKey(*blob).fUniqueID == fID);
148 uint32_t fID;
176 auto* idEntry = fBlobIDCache.find(msg.fID);
188 fBlobIDCache.remove(msg.fID);
  /external/skia/include/private/
GrSurfaceProxy.h 199 explicit UniqueID(const GrGpuResource::UniqueID& id) : fID(id.asUInt()) { }
201 UniqueID() : fID(GrGpuResource::CreateUniqueID()) { }
203 uint32_t asUInt() const { return fID; }
206 return fID == other.fID;
212 bool isInvalid() const { return SK_InvalidUniqueID == fID; }
215 const uint32_t fID;
  /external/skia/src/pathops/
SkOpAngle.h 36 return SkDEBUGRELEASE(fID, -1);
136 SkDEBUGCODE(int fID);
  /external/skia/include/gpu/gl/
GrGLTypes.h 114 GrGLuint fID;
  /frameworks/base/libs/hwui/pipeline/skia/
LayerDrawable.cpp 48 externalTexture.fID = glLayer->getTextureId();

Completed in 549 milliseconds

1 2 3