HomeSort by relevance Sort by last modified time
    Searched refs:fTexture (Results 1 - 24 of 24) sorted by null

  /external/skia/src/gpu/gl/debug/
GrTextureUnitObj.cpp 14 if (fTexture) {
15 GrAlwaysAssert(fTexture->getBound(this));
16 fTexture->resetBound(this);
18 GrAlwaysAssert(!fTexture->getDeleted());
19 fTexture->unref();
22 fTexture = texture;
24 if (fTexture) {
25 GrAlwaysAssert(!fTexture->getDeleted());
26 fTexture->ref();
28 GrAlwaysAssert(!fTexture->getBound(this))
    [all...]
GrTextureUnitObj.h 25 , fTexture(NULL) {
34 GrTextureObj *getTexture() { return fTexture; }
39 GrTextureObj *fTexture;
GrDebugGL.cpp 42 , fTexture(NULL)
75 fTexture = NULL;
GrDebugGL.h 136 GrTextureObj* fTexture;
  /external/skia/src/gpu/
GrTexturePriv.h 21 fTexture->fDesc.fFlags = fTexture->fDesc.fFlags | flags;
25 fTexture->fDesc.fFlags = fTexture->fDesc.fFlags & ~flags;
29 return 0 != (fTexture->fDesc.fFlags & flags);
32 void dirtyMipMaps(bool mipMapsDirty) { fTexture->dirtyMipMaps(mipMapsDirty); }
35 return GrTexture::kValid_MipMapsStatus != fTexture->fMipMapsStatus;
39 return GrTexture::kNotAllocated_MipMapsStatus != fTexture->fMipMapsStatus;
46 SkASSERT(SkIsPow2(fTexture->fDesc.fWidth));
47 return x >> fTexture->fShiftFixedX
    [all...]
GrAtlas.h 40 GrTexture* texture() const { return fTexture; }
62 GrTexture* fTexture;
116 return fTexture;
139 GrTexture* fTexture;
GrAtlas.cpp 26 , fTexture(NULL)
96 fTexture->writePixels(loc->fX, loc->fY, width, height, fTexture->config(), image, 0,
117 SkASSERT(fTexture);
125 fTexture->writePixels(fOffset.fX + fDirtyRect.fLeft, fOffset.fY + fDirtyRect.fTop,
126 fDirtyRect.width(), fDirtyRect.height(), fTexture->config(), dataPtr,
156 fTexture = NULL;
187 SkSafeUnref(fTexture);
220 if (NULL == fTexture) {
228 fTexture = fGpu->createTexture(desc, true, NULL, 0)
    [all...]
GrTextureAccess.cpp 49 fTexture.set(SkRef(texture), kRead_GrIOType);
61 fTexture.set(SkRef(texture), kRead_GrIOType);
68 fTexture.set(SkRef(texture), kRead_GrIOType);
78 fTexture.set(SkRef(texture), kRead_GrIOType);
GrBatchAtlas.cpp 47 GrTexture* texture() const { return fTexture; }
95 SkASSERT(fDirty && fData && fTexture);
101 uploader.writeTexturePixels(fTexture,
104 fTexture->config(), dataPtr, rowBytes);
139 , fTexture(NULL)
172 fTexture = texture;
186 GrTexture* fTexture;
222 : fTexture(texture)
254 SkSafeUnref(fTexture);
290 SkASSERT(fTexture && width <= fPlotWidth && height <= fPlotHeight)
    [all...]
GrBatchAtlas.h 49 GrTexture* getTexture() const { return fTexture; }
124 GrTexture* fTexture;
GrLayerCache.h 159 , fTexture(NULL)
175 SkSafeUnref(fTexture);
191 SkRefCnt_SafeAssign(fTexture, texture);
193 if (!fTexture) {
197 GrTexture* texture() { return fTexture; }
243 // fTexture is a ref on the atlasing texture for atlased layers and a
245 GrTexture* fTexture;
248 // the layer in whichever texture it resides. It is empty when 'fTexture'
261 // For non-atlased layers 'fLocked' should always match "fTexture".
GrLayerCache.cpp 17 if (fTexture) {
33 SkASSERT(fTexture && backingTexture == fTexture);
40 SkASSERT(fTexture);
SkGpuDevice.cpp 100 fTexture.reset(NULL);
103 fTexture.reset(GrRefCachedBitmapTexture(context, bitmap, params));
104 return fTexture.get();
109 SkAutoTUnref<GrTexture> fTexture;
    [all...]
  /external/skia/include/gpu/
GrTexture.h 85 : fTexture(SkSafeRef(texture))
90 fTexture.reset(SkSafeRef(other.fTexture.get()));
100 GrTexture* texture() const { return fTexture.get(); }
103 fTexture.reset(SkSafeRef(texture));
108 SkAutoTUnref<GrTexture> fTexture;
GrTextureAccess.h 165 GrTexture* getTexture() const { return fTexture.get(); }
170 const GrGpuResourceRef* getProgramTexture() const { return &fTexture; }
188 ProgramTexture fTexture;
  /external/skia/src/image/
SkImage_Gpu.h 40 GrTexture* onGetTexture() const override { return fTexture; }
50 SkAutoTUnref<GrTexture> fTexture;
SkImage_Gpu.cpp 16 , fTexture(SkRef(tex))
44 GrWrapTextureInBitmap(fTexture, this->width(), this->height(), this->isOpaque(), &bm);
53 if (!fTexture->readPixels(0, 0, dst->width(), dst->height(), kSkia8888_GrPixelConfig,
61 return GrPixelConfigIsOpaque(fTexture->config());
94 if (!fTexture->readPixels(srcX, srcY, info.width(), info.height(), config,
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 77 , fTexture(NULL)
95 if (!fTexture) {
162 fTexture->writePixels(0, rowNumber * fDesc.fRowHeight,
207 fTexture = fDesc.fContext->textureProvider()->findAndRefTextureByUniqueKey(key);
208 if (NULL == fTexture) {
209 fTexture = fDesc.fContext->textureProvider()->createTexture(texDesc, true, NULL, 0);
210 if (!fTexture) {
213 fDesc.fContext->textureProvider()->assignUniqueKeyToTexture(key, fTexture);
218 SkASSERT(fTexture);
222 SkASSERT(fTexture && 0 == fLockedRows)
    [all...]
GrTextureStripAtlas.h 71 GrTexture* getTexture() const { return fTexture; }
169 GrTexture* fTexture;
  /external/skia/gm/
samplerstress.cpp 51 fTexture.allocN32Pixels(xSize, ySize);
52 SkPMColor* addr = fTexture.getAddr32(0, 0);
77 fShader.reset(SkShader::CreateBitmapShader(fTexture,
140 SkBitmap fTexture;
tilemodes.cpp 55 SkBitmap fTexture[SK_ARRAY_COUNT(gColorTypes)];
77 makebm(&fTexture[i], gColorTypes[i], size, size);
125 makebm(&fTexture[i], gColorTypes[i], size, size);
128 setup(&paint, fTexture[i], gFilters[j], gModes[kx], gModes[ky]);
tilemodes_scaled.cpp 60 SkBitmap fTexture[SK_ARRAY_COUNT(gColorTypes)];
81 makebm(&fTexture[i], gColorTypes[i], size, size);
135 makebm(&fTexture[i], gColorTypes[i], size, size);
138 setup(&paint, fTexture[i], gFilterQualitys[j], gModes[kx], gModes[ky]);
  /external/skia/samplecode/
SampleTiling.cpp 66 makebm(&fTexture[i], gColorTypes[i], gWidth, gHeight);
73 SkBitmap fTexture[SK_ARRAY_COUNT(gColorTypes)];
131 setup(&paint, fTexture[i], gFilters[j], gModes[kx], gModes[ky]);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
strmif.h     [all...]

Completed in 602 milliseconds