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

/external/skia/include/core/
H A DSkCrossContextImageData.h46 , fDesc(desc)
49 fDesc.fTextureHandle = fTextureData->getBackendObject();
61 GrBackendTextureDesc fDesc; member in class:SkCrossContextImageData
/external/skia/src/gpu/
H A DGrPathRendering.cpp52 , fDesc(desc.copy())
64 bool isEqualTo(const SkDescriptor& desc) const override { return *fDesc == desc; }
69 const std::unique_ptr<SkDescriptor> fDesc; member in class:GlyphGenerator
H A DGrTextureStripAtlas.h76 GrContext* getContext() const { return fDesc.fContext; }
148 static const Desc& GetKey(const AtlasEntry& entry) { return entry.fDesc; }
154 Desc fDesc; member in class:GrTextureStripAtlas::AtlasEntry
173 const Desc fDesc; member in class:GrTextureStripAtlas
/external/skia/src/gpu/gl/
H A DGrGLProgram.h47 const GrProgramDesc& getDesc() { return fDesc; }
143 GrProgramDesc fDesc; member in class:GrGLProgram
/external/skia/include/gpu/
H A DGrSurface.h27 int width() const { return fDesc.fWidth; }
32 int height() const { return fDesc.fHeight; }
40 SkASSERT(kTopLeft_GrSurfaceOrigin == fDesc.fOrigin || kBottomLeft_GrSurfaceOrigin == fDesc.fOrigin);
41 return fDesc.fOrigin;
50 GrPixelConfig config() const { return fDesc.fConfig; }
55 const GrSurfaceDesc& desc() const { return fDesc; }
204 , fDesc(desc)
211 GrSurfaceDesc fDesc; member in class:GrSurface
/external/skia/src/gpu/vk/
H A DGrVkBuffer.h32 size_t size() const { return fDesc.fSizeInBytes; }
84 : fDesc(desc), fResource(resource), fOffset(0), fMapPtr(nullptr) {
88 this->internalMap(gpu, fDesc.fSizeInBytes);
113 Desc fDesc; member in class:GrVkBuffer
H A DGrVkPipelineState.h84 const Desc& getDesc() { return fDesc; }
229 Desc fDesc; member in class:GrVkPipelineState
/external/skia/include/private/
H A DGrSurfaceProxy.h185 const GrSurfaceDesc& desc() const { return fDesc; }
188 SkASSERT(kTopLeft_GrSurfaceOrigin == fDesc.fOrigin ||
189 kBottomLeft_GrSurfaceOrigin == fDesc.fOrigin);
190 return fDesc.fOrigin;
192 int width() const { return fDesc.fWidth; }
193 int height() const { return fDesc.fHeight; }
194 GrPixelConfig config() const { return fDesc.fConfig; }
309 : fDesc(desc)
332 // For wrapped resources, 'fDesc' will always be filled in from the wrapped resource.
333 GrSurfaceDesc fDesc; member in class:GrSurfaceProxy
[all...]
/external/skia/src/core/
H A DSkBitmapCache.cpp99 BitmapKey(const SkBitmapCacheDesc& desc) : fDesc(desc) {
100 this->init(&gBitmapKeyNamespaceLabel, SkMakeResourceCacheSharedIDForBitmap(fDesc.fImageID),
101 sizeof(fDesc));
106 fDesc.fScaledWidth, fDesc.fScaledHeight, fDesc.fImageID,
107 fDesc.fSubset.x(), fDesc.fSubset.y(), fDesc.fSubset.width(), fDesc
110 const SkBitmapCacheDesc fDesc; member in struct:__anon16930::BitmapKey
[all...]
H A DSkDescriptor.h136 SkAutoDescriptor() : fDesc(nullptr) {}
137 SkAutoDescriptor(size_t size) : fDesc(nullptr) { this->reset(size); }
138 SkAutoDescriptor(const SkDescriptor& desc) : fDesc(nullptr) {
141 memcpy(fDesc, &desc, size);
149 fDesc = (SkDescriptor*)(void*)fStorage;
151 fDesc = SkDescriptor::Alloc(size).release();
155 SkDescriptor* getDesc() const { SkASSERT(fDesc); return fDesc; }
158 if (fDesc != (SkDescriptor*)(void*)fStorage) {
159 delete fDesc;
169 SkDescriptor* fDesc; member in class:SkAutoDescriptor
[all...]
H A DSkGlyphCache.h98 const SkDescriptor& getDescriptor() const { return *fDesc; }
231 const std::unique_ptr<SkDescriptor> fDesc; member in class:SkGlyphCache
/external/skia/src/gpu/glsl/
H A DGrGLSLProgramBuilder.h43 GrProgramDesc* desc() { return fDesc; }
44 const GrProgramDesc::KeyHeader& header() const { return fDesc->header(); }
98 GrProgramDesc* fDesc; member in class:GrGLSLProgramBuilder

Completed in 258 milliseconds