HomeSort by relevance Sort by last modified time
    Searched refs:fID (Results 1 - 25 of 70) 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/src/gpu/gl/
GrGLBufferImpl.cpp 23 if (0 == desc.fID) {
44 } else if (fDesc.fID) {
45 gpu->releaseBuffer(fDesc.fID, fBufferType);
46 fDesc.fID = 0;
54 fDesc.fID = 0;
65 if (0 == fDesc.fID) {
68 fMapPtr = gpu->mapBuffer(fDesc.fID, fBufferType, fDesc.fUsage, fGLSizeInBytes,
79 if (0 != fDesc.fID) {
80 gpu->unmapBuffer(fDesc.fID, fBufferType, fMapPtr);
97 if (0 == fDesc.fID) {
    [all...]
GrGLBufferImpl.h 33 GrGLuint fID; // set to 0 to indicate buffer is CPU-backed and not a VBO.
41 SkASSERT(0 == fDesc.fID);
47 GrGLuint bufferID() const { return fDesc.fID; }
GrGLTexture.cpp 30 SkASSERT(0 != idDesc.fInfo.fID);
38 if (fInfo.fID) {
45 GL_CALL(DeleteTextures(1, &fInfo.fID));
48 fInfo.fID = 0;
55 fInfo.fID = 0;
GrGLVertexArray.h 126 GrGLuint arrayID() const { return fID; }
131 GrGLuint fID;
GrGLIndexBuffer.cpp 14 0 == desc.fID)
GrGLVertexBuffer.cpp 14 0 == desc.fID)
GrGLVertexArray.cpp 104 : fID(id)
110 if (0 == fID) {
113 gpu->bindVertexArray(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 16 GrGpuTraceMarker(const char* marker, int idCounter) : fMarker(marker), fID(idCounter) {}
19 return this->fMarker < rhs.fMarker || (this->fMarker == rhs.fMarker && this->fID < rhs.fID);
23 return (this->fID == rhs.fID && this->fMarker == rhs.fMarker);
27 int fID;
GrGlyph.h 34 GrBatchAtlas::AtlasID fID;
43 fID = GrBatchAtlas::kInvalidAtlasID;
GrLayerAtlas.h 39 int id() const { return fID; }
53 int fID;
GrTessellator.cpp 145 , fID (-1.0f)
157 float fID; // Identifier used for logging.
277 fTop->fID, fBottom->fID,
278 other.fTop->fID, other.fBottom->fID);
321 fID = gID++;
322 LOG("*** created Poly %d\n", fID);
389 LOG("addVertex() to %d at %g (%g, %g), %s side\n", fID, v->fID, v->fPoint.fX, v->fPoint.fY
    [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...]
HashTest.cpp 97 CopyCounter() : fID(0), fCounter(nullptr) {}
99 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {}
102 : fID(other.fID)
109 fID = other.fID;
115 return fID == other.fID;
119 uint32_t fID;
EGLImageTest.cpp 102 externalTexture.fID = 0;
105 cleanup(glCtx0, externalTexture.fID, glCtx1, context1, backendTexture1, image);
111 cleanup(glCtx0, externalTexture.fID, glCtx1, context1, backendTexture1, image);
123 if (!backendTexture1 || !backendTexture1->fID) {
125 cleanup(glCtx0, externalTexture.fID, glCtx1, context1, backendTexture1, image);
130 cleanup(glCtx0, externalTexture.fID, glCtx1, context1, backendTexture1, image);
135 image = glCtx1->texture2DToEGLImage(backendTexture1->fID);
138 cleanup(glCtx0, externalTexture.fID, glCtx1, context1, backendTexture1, image);
150 GR_GL_CALL(glCtx1->gl(), BindTexture(backendTexture1->fTarget, backendTexture1->fID));
163 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);
  /external/skia/include/ports/
SkFontConfigInterface.h 48 FontIdentity() : fID(0), fTTCIndex(0) {}
51 return fID == other.fID &&
59 uint32_t 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/core/
SkGlyph.h 73 this->initCommon(glyph.fID);
110 return ID2Code(fID);
114 return ID2SubX(fID);
118 return SubToFixed(ID2SubX(fID));
122 return SubToFixed(ID2SubY(fID));
129 fImage, fPath, fID, fMaskFormat fields.
138 return glyph.fID;
150 fID = id;
196 // accesses fID. Remove when fID accesses are cleaned up
    [all...]
  /external/skia/src/pathops/
SkOpAngle.h 41 return SkDEBUGRELEASE(fID, -1);
105 SkDEBUGCODE(fID = id);
144 SkDEBUGCODE(int fID);
  /external/skia/src/gpu/text/
GrBatchFontCache.h 137 return this->getAtlas(glyph->fMaskFormat)->hasID(glyph->fID);
148 updater->add(glyph->fID);
149 this->getAtlas(glyph->fMaskFormat)->setLastUseToken(glyph->fID, token);
  /external/skia/tools/
sk_tool_utils.h 136 TopoTestNode(int id) : fID(id), fOutputPos(-1), fTempMark(false) { }
142 int id() const { return fID; }
216 int fID;
  /external/skia/include/gpu/gl/
GrGLTypes.h 111 GrGLuint fID;

Completed in 2034 milliseconds

1 2 3