Home
last modified time | relevance | path

Searched refs:fReadView (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/gpu/ganesh/
DSurfaceContext.h66 GrImageInfo imageInfo() const { return {fColorInfo, fReadView.proxy()->dimensions()}; } in imageInfo()
68 GrSurfaceOrigin origin() const { return fReadView.origin(); } in origin()
69 skgpu::Swizzle readSwizzle() const { return fReadView.swizzle(); } in readSwizzle()
72 GrSurfaceProxyView readSurfaceView() { return fReadView; } in readSurfaceView()
74 SkISize dimensions() const { return fReadView.dimensions(); } in dimensions()
75 int width() const { return fReadView.proxy()->width(); } in width()
76 int height() const { return fReadView.proxy()->height(); } in height()
78 skgpu::Mipmapped mipmapped() const { return fReadView.mipmapped(); } in mipmapped()
138 GrSurfaceProxy* asSurfaceProxy() { return fReadView.proxy(); } in asSurfaceProxy()
139 const GrSurfaceProxy* asSurfaceProxy() const { return fReadView.proxy(); } in asSurfaceProxy()
[all …]
DSurfaceContext.cpp74 : fContext(context), fReadView(std::move(readView)), fColorInfo(info) { in SurfaceContext()
1400 SkASSERT(fReadView.proxy()); in validate()
1401 fReadView.proxy()->validate(fContext); in validate()
1404 this->colorInfo().colorType(), fReadView.proxy()->backendFormat())); in validate()
/external/skia/src/gpu/graphite/
DDrawContext.h61 const TextureProxyView& readSurfaceView() const { return fReadView; } in readSurfaceView()
110 TextureProxyView fReadView; variable
DDrawContext.cpp104 fReadView = {}; // Presumably this DrawContext is rendering into a swap chain in DrawContext()
107 fReadView = {fTarget, swizzle}; in DrawContext()