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

1 2 3

  /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 47 FontIdentity() : fID(0), fTTCIndex(0) {}
50 return fID == other.fID &&
58 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/gl/
GrGLBufferImpl.cpp 27 if (0 == desc.fID) {
41 } else if (fDesc.fID && !fDesc.fIsWrapped) {
43 GL_CALL(gpu, DeleteBuffers(1, &fDesc.fID));
45 gpu->notifyVertexBufferDelete(fDesc.fID);
48 gpu->notifyIndexBufferDelete(fDesc.fID);
50 fDesc.fID = 0;
56 fDesc.fID = 0;
65 gpu->bindVertexBuffer(fDesc.fID);
68 gpu->bindIndexBufferAndDefaultVertexArray(fDesc.fID);
75 if (0 == fDesc.fID) {
    [all...]
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 134 , fID(id)
140 fID = 0;
145 if (0 != fID) {
146 GL_CALL(DeleteVertexArrays(1, &fID));
147 GPUGL->notifyVertexArrayDelete(fID);
148 fID = 0;
154 if (0 == fID) {
157 GPUGL->bindVertexArray(fID);
GrGLIndexBuffer.cpp 12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
GrGLVertexBuffer.cpp 12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
  /external/skia/src/gpu/gl/
GrGLBufferImpl.cpp 27 if (0 == desc.fID) {
41 } else if (fDesc.fID && !fDesc.fIsWrapped) {
43 GL_CALL(gpu, DeleteBuffers(1, &fDesc.fID));
45 gpu->notifyVertexBufferDelete(fDesc.fID);
48 gpu->notifyIndexBufferDelete(fDesc.fID);
50 fDesc.fID = 0;
56 fDesc.fID = 0;
65 gpu->bindVertexBuffer(fDesc.fID);
68 gpu->bindIndexBufferAndDefaultVertexArray(fDesc.fID);
75 if (0 == fDesc.fID) {
    [all...]
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 134 , fID(id)
140 fID = 0;
145 if (0 != fID) {
146 GL_CALL(DeleteVertexArrays(1, &fID));
147 GPUGL->notifyVertexArrayDelete(fID);
148 fID = 0;
154 if (0 == fID) {
157 GPUGL->bindVertexArray(fID);
GrGLIndexBuffer.cpp 12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
GrGLVertexBuffer.cpp 12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
  /external/chromium_org/third_party/skia/src/core/
SkGlyph.h 28 uint32_t fID;
36 fID = id;
74 return ID2Code(fID);
78 unsigned code = ID2Code(fID);
84 return ID2SubX(fID);
88 return SubToFixed(ID2SubX(fID));
92 return SubToFixed(ID2SubY(fID));
99 fImage, fPath, fID, fMaskFormat fields.
SkGlyphCache.cpp 102 uniHashUsed += fCharToGlyphHash[i].fID != 0xFFFFFFFF ? sizeof(fCharToGlyphHash[0]) : 0;
145 if (rec.fID == id) {
167 if (rec->fID != id) {
169 rec->fID = id;
183 if (NULL == glyph || glyph->fID != id) {
197 if (rec->fID != id) {
200 rec->fID = id;
220 if (rec->fID != id) {
223 rec->fID = id;
243 if (NULL == glyph || glyph->fID != id)
    [all...]
  /external/skia/src/core/
SkGlyph.h 28 uint32_t fID;
36 fID = id;
74 return ID2Code(fID);
78 unsigned code = ID2Code(fID);
84 return ID2SubX(fID);
88 return SubToFixed(ID2SubX(fID));
92 return SubToFixed(ID2SubY(fID));
99 fImage, fPath, fID, fMaskFormat fields.
SkGlyphCache.cpp 102 uniHashUsed += fCharToGlyphHash[i].fID != 0xFFFFFFFF ? sizeof(fCharToGlyphHash[0]) : 0;
145 if (rec.fID == id) {
167 if (rec->fID != id) {
169 rec->fID = id;
183 if (NULL == glyph || glyph->fID != id) {
197 if (rec->fID != id) {
200 rec->fID = id;
220 if (rec->fID != id) {
223 rec->fID = id;
243 if (NULL == glyph || glyph->fID != id)
    [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...]
  /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/src/pathops/
SkOpAngle.h 83 fID = id;
108 int fID;
  /external/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/src/pathops/
SkOpAngle.h 83 fID = id;
108 int fID;

Completed in 1297 milliseconds

1 2 3