Searched defs:fTexture (Results 1 - 12 of 12) sorted by relevance

/external/skia/tools/gpu/gl/debug/
H A DGrTextureUnitObj.h25 , fTexture(nullptr) {
34 GrTextureObj *getTexture() { return fTexture; }
39 GrTextureObj *fTexture; member in class:GrTextureUnitObj
/external/skia/gm/
H A Dsamplerstress.cpp49 fTexture.allocN32Pixels(xSize, ySize);
50 SkPMColor* addr = fTexture.getAddr32(0, 0);
75 fShader = SkShader::MakeBitmapShader(fTexture, SkShader::kRepeat_TileMode,
139 SkBitmap fTexture; member in class:skiagm::SamplerStressGM
H A Dtilemodes.cpp54 SkBitmap fTexture[SK_ARRAY_COUNT(gColorTypes)]; member in class:TilingGM
76 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]);
H A Dtilemodes_scaled.cpp53 SkBitmap fTexture[SK_ARRAY_COUNT(gColorTypes)]; member in class:ScaledTilingGM
74 makebm(&fTexture[i], gColorTypes[i], size, size);
127 makebm(&fTexture[i], gColorTypes[i], size, size);
130 setup(&paint, fTexture[i], gFilterQualitys[j], gModes[kx], gModes[ky]);
/external/skia/include/gpu/
H A DGrCoordTransform.h26 : fTexture(nullptr)
87 fTexture = nullptr;
96 fTexture = that.fTexture;
121 SkASSERT(fTexture && that.fTexture);
122 return fTexture->width() == that.fTexture->width() &&
123 fTexture->height() == that.fTexture
142 const GrTexture* fTexture; member in class:GrCoordTransform
[all...]
H A DGrProcessor.h240 GrTexture* texture() const { return fTexture.get(); }
247 const GrGpuResourceRef* programTexture() const { return &fTexture; }
253 ProgramTexture fTexture; member in class:GrProcessor::TextureSampler
323 GrTexture* texture() const { return fTexture.get(); }
325 GrIOType ioType() const { return fTexture.ioType(); }
333 const GrGpuResourceRef* programTexture() const { return &fTexture; }
336 GrTGpuResourceRef<GrTexture> fTexture; member in class:GrProcessor::ImageStorageAccess
/external/skia/src/gpu/
H A DGrTexturePriv.h22 fTexture->fDesc.fFlags = fTexture->fDesc.fFlags | flags;
26 fTexture->fDesc.fFlags = fTexture->fDesc.fFlags & ~flags;
30 return 0 != (fTexture->fDesc.fFlags & flags);
34 fTexture->dirtyMipMaps(mipMapsDirty);
38 return GrTexture::kValid_MipMapsStatus != fTexture->fMipMapsStatus;
42 return GrTexture::kNotAllocated_MipMapsStatus != fTexture->fMipMapsStatus;
46 fTexture->fMaxMipMapLevel = maxMipMapLevel;
50 return fTexture
91 GrTexture* fTexture; member in class:GrTexturePriv
[all...]
H A DGrXferProcessor.h67 : fTexture(SkSafeRef(texture)), fOffset(texture ? offset : SkIPoint{0, 0}) {}
70 fTexture = other.fTexture;
76 return fTexture == that.fTexture && fOffset == that.fOffset;
85 GrTexture* texture() const { return fTexture.get(); }
88 fTexture = std::move(texture);
89 if (!fTexture) {
95 sk_sp<GrTexture> fTexture; member in class:GrXferProcessor::DstTexture
/external/skia/samplecode/
H A DSampleTiling.cpp64 makebm(&fTexture[i], gColorTypes[i], gWidth, gHeight);
71 SkBitmap fTexture[SK_ARRAY_COUNT(gColorTypes)]; member in class:TilingView
129 setup(&paint, fTexture[i], gFilters[j], gModes[kx], gModes[ky]);
/external/skia/bench/
H A DGLInstancedArraysBench.cpp104 GrGLuint fTexture; member in class:GLCpuPosInstancedArraysBench
305 fTexture = SetupFramebuffer(gl, kScreenWidth, kScreenHeight);
375 GR_GL_CALL(gl, DeleteTextures(1, &fTexture));
H A DGLVertexAttributesBench.cpp28 : fTexture(0)
53 GrGLuint fTexture; member in class:GLVertexAttributesBench
157 fTexture = SetupFramebuffer(gl, kScreenWidth, kScreenHeight);
252 GR_GL_CALL(gl, DeleteTextures(1, &fTexture));
/external/skia/tests/
H A DProcessorTest.cpp50 Image(sk_sp<GrTexture> texture, GrIOType ioType) : fTexture(texture), fIOType(ioType) {}
51 sk_sp<GrTexture> fTexture; member in struct:__anon17270::TestFP::Image
86 image.fTexture, image.fIOType, GrSLMemoryModel::kNone, GrSLRestrict::kNo));

Completed in 337 milliseconds