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

  /external/skia/src/gpu/gl/debug/
GrTextureUnitObj.h 26 , fTexture(NULL) {
35 GrTextureObj *getTexture() { return fTexture; }
40 GrTextureObj *fTexture;
GrDebugGL.h 127 GrTextureObj * fTexture;
  /external/skia/src/image/
SkImage_Gpu.cpp 25 GrTexture* getTexture() { return fTexture; }
30 GrTexture* fTexture;
42 , fTexture(texture) {
44 SkASSERT(NULL != fTexture);
45 fTexture->ref();
46 fBitmap.setConfig(SkBitmap::kARGB_8888_Config, fTexture->width(), fTexture->height());
47 fBitmap.setPixelRef(new SkGrPixelRef(fTexture))->unref();
51 SkSafeUnref(fTexture);
61 if (texture == fTexture) {
    [all...]
  /external/skia/include/gpu/
GrRenderTarget.h 35 virtual GrTexture* asTexture() SK_OVERRIDE { return fTexture; }
36 virtual const GrTexture* asTexture() const SK_OVERRIDE { return fTexture; }
148 , fTexture(texture) {
159 GrAssert(NULL != fTexture);
160 fTexture = NULL;
169 GrTexture* fTexture; // not ref'ed
GrTextureAccess.h 152 (fTexture.get() == other.fTexture.get()) &&
158 GrTexture* getTexture() const { return fTexture.get(); }
183 SkAutoTUnref<GrTexture> fTexture;
GrContext.h     [all...]
  /external/skia/src/gpu/
GrAtlas.h 29 GrTexture* texture() const { return fTexture; }
48 GrTexture* fTexture;
69 return fTexture[format];
77 GrTexture* fTexture[kCount_GrMaskFormats];
SkGpuDevice.cpp 84 , fTexture(NULL) {
92 , fTexture(NULL) {
98 if (NULL != fTexture) {
99 GrUnlockAndUnrefCachedBitmapTexture(fTexture);
106 if (NULL != fTexture) {
107 GrUnlockAndUnrefCachedBitmapTexture(fTexture);
108 fTexture = NULL;
114 fTexture = GrLockAndRefCachedBitmapTexture(device->context(), bitmap, params);
115 result = fTexture;
122 GrTexture* fTexture;
    [all...]
  /external/skia/gm/
samplerstress.cpp 50 fTexture.setConfig(SkBitmap::kARGB_8888_Config,
55 fTexture.allocPixels();
56 fTexture.lockPixels();
57 SkPMColor* addr = fTexture.getAddr32(0, 0);
72 fTexture.unlockPixels();
84 fShader.reset(SkShader::CreateBitmapShader(fTexture,
147 SkBitmap fTexture;
tilemodes.cpp 69 SkBitmap fTexture[SK_ARRAY_COUNT(gConfigs)];
80 makebm(&fTexture[i], gConfigs[i], gWidth, gHeight);
123 setup(&paint, fTexture[i], gFilters[j], gModes[kx], gModes[ky]);
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.h 71 GrTexture* getTexture() const { return fTexture; }
165 GrTexture* fTexture;

Completed in 64 milliseconds