blob: be67d0e4718fc2e9c7e28dca95e194c14ad5feef [file] [log] [blame]
robertphillips4fd74ae2016-08-03 14:26:53 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrContextPriv_DEFINED
9#define GrContextPriv_DEFINED
10
11#include "GrContext.h"
Brian Osman45580d32016-11-23 09:37:01 -050012#include "GrSurfaceContext.h"
robertphillips4fd74ae2016-08-03 14:26:53 -070013
Greg Danielbcf612b2017-05-01 13:50:58 +000014class GrBackendRenderTarget;
Brian Salomond17f6582017-07-19 18:28:58 -040015class GrOnFlushCallbackObject;
Greg Danield85f97d2017-03-07 13:37:21 -050016class GrSemaphore;
Robert Phillipse2f7d182016-12-15 09:23:05 -050017class GrSurfaceProxy;
Brian Salomond17f6582017-07-19 18:28:58 -040018class GrTextureContext;
Robert Phillipse2f7d182016-12-15 09:23:05 -050019
robertphillips4fd74ae2016-08-03 14:26:53 -070020/** Class that adds methods to GrContext that are only intended for use internal to Skia.
21 This class is purely a privileged window into GrContext. It should never have additional
22 data members or virtual methods. */
23class GrContextPriv {
24public:
bungeman6bd52842016-10-27 09:30:08 -070025 GrDrawingManager* drawingManager() { return fContext->fDrawingManager.get(); }
csmartdaltonbde96c62016-08-31 12:54:46 -070026
Robert Phillipsbf25d432017-04-07 10:08:53 -040027 sk_sp<GrSurfaceContext> makeWrappedSurfaceContext(sk_sp<GrSurfaceProxy>, sk_sp<SkColorSpace>);
Robert Phillips31c26082016-12-14 15:12:15 -050028
Robert Phillipsbf25d432017-04-07 10:08:53 -040029 sk_sp<GrSurfaceContext> makeDeferredSurfaceContext(const GrSurfaceDesc&,
30 SkBackingFit,
31 SkBudgeted);
Robert Phillipse305cc1f2016-12-14 12:19:05 -050032
Brian Salomond17f6582017-07-19 18:28:58 -040033 sk_sp<GrTextureContext> makeBackendTextureContext(const GrBackendTexture& tex,
Greg Daniel7ef28f32017-04-20 16:41:55 +000034 GrSurfaceOrigin origin,
Brian Osmanc1e37052017-03-09 14:19:20 -050035 sk_sp<SkColorSpace> colorSpace);
Robert Phillipsd46697a2017-01-25 12:10:37 -050036
Brian Osman11052242016-10-27 14:47:55 -040037 sk_sp<GrRenderTargetContext> makeBackendTextureRenderTargetContext(
Greg Daniel7ef28f32017-04-20 16:41:55 +000038 const GrBackendTexture& tex,
39 GrSurfaceOrigin origin,
40 int sampleCnt,
Brian Osman11052242016-10-27 14:47:55 -040041 sk_sp<SkColorSpace> colorSpace,
Brian Osmanc1e37052017-03-09 14:19:20 -050042 const SkSurfaceProps* = nullptr);
robertphillips4fd74ae2016-08-03 14:26:53 -070043
Brian Osman11052242016-10-27 14:47:55 -040044 sk_sp<GrRenderTargetContext> makeBackendRenderTargetRenderTargetContext(
Greg Danielbcf612b2017-05-01 13:50:58 +000045 const GrBackendRenderTarget&,
46 GrSurfaceOrigin origin,
Brian Osman11052242016-10-27 14:47:55 -040047 sk_sp<SkColorSpace> colorSpace,
48 const SkSurfaceProps* = nullptr);
robertphillips4fd74ae2016-08-03 14:26:53 -070049
Brian Osman11052242016-10-27 14:47:55 -040050 sk_sp<GrRenderTargetContext> makeBackendTextureAsRenderTargetRenderTargetContext(
Greg Daniel7ef28f32017-04-20 16:41:55 +000051 const GrBackendTexture& tex,
52 GrSurfaceOrigin origin,
53 int sampleCnt,
robertphillips4fd74ae2016-08-03 14:26:53 -070054 sk_sp<SkColorSpace> colorSpace,
55 const SkSurfaceProps* = nullptr);
56
Brian Osman46da1cc2017-02-14 14:15:48 -050057 bool disableGpuYUVConversion() const { return fContext->fDisableGpuYUVConversion; }
58
Robert Phillips7ee385e2017-03-30 08:02:11 -040059 /**
60 * Call to ensure all drawing to the context has been issued to the
61 * underlying 3D API.
62 * The 'proxy' parameter is a hint. If it is supplied the context will guarantee that
63 * the draws required for that proxy are flushed but it could do more. If no 'proxy' is
64 * provided then all current work will be flushed.
65 */
66 void flush(GrSurfaceProxy*);
67
Chris Daltonfe199b72017-05-05 11:26:15 -040068 /**
69 * Registers an object for flush-related callbacks. (See GrOnFlushCallbackObject.)
70 *
71 * NOTE: the drawing manager tracks this object as a raw pointer; it is up to the caller to
72 * ensure its lifetime is tied to that of the context.
Robert Phillipseb35f4d2017-03-21 07:56:47 -040073 */
Chris Daltonfe199b72017-05-05 11:26:15 -040074 void addOnFlushCallbackObject(GrOnFlushCallbackObject*);
75
76 void testingOnly_flushAndRemoveOnFlushCallbackObject(GrOnFlushCallbackObject*);
Robert Phillipseb35f4d2017-03-21 07:56:47 -040077
Robert Phillips7ee385e2017-03-30 08:02:11 -040078 /**
79 * After this returns any pending writes to the surface will have been issued to the
80 * backend 3D API.
81 */
82 void flushSurfaceWrites(GrSurfaceProxy*);
83
84 /**
85 * After this returns any pending reads or writes to the surface will have been issued to the
86 * backend 3D API.
87 */
88 void flushSurfaceIO(GrSurfaceProxy*);
89
90 /**
91 * Finalizes all pending reads and writes to the surface and also performs an MSAA resolve
92 * if necessary.
93 *
94 * It is not necessary to call this before reading the render target via Skia/GrContext.
95 * GrContext will detect when it must perform a resolve before reading pixels back from the
96 * surface or using it as a texture.
97 */
98 void prepareSurfaceForExternalIO(GrSurfaceProxy*);
99
Robert Phillipse78b7252017-04-06 07:59:41 -0400100 /**
101 * These flags can be used with the read/write pixels functions below.
102 */
103 enum PixelOpsFlags {
104 /** The GrContext will not be flushed before the surface read or write. This means that
105 the read or write may occur before previous draws have executed. */
106 kDontFlush_PixelOpsFlag = 0x1,
107 /** Any surface writes should be flushed to the backend 3D API after the surface operation
108 is complete */
109 kFlushWrites_PixelOp = 0x2,
110 /** The src for write or dst read is unpremultiplied. This is only respected if both the
111 config src and dst configs are an RGBA/BGRA 8888 format. */
112 kUnpremul_PixelOpsFlag = 0x4,
113 };
114
115 /**
116 * Reads a rectangle of pixels from a surface.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400117 * @param src the surface context to read from.
Robert Phillipse78b7252017-04-06 07:59:41 -0400118 * @param left left edge of the rectangle to read (inclusive)
119 * @param top top edge of the rectangle to read (inclusive)
120 * @param width width of rectangle to read in pixels.
121 * @param height height of rectangle to read in pixels.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400122 * @param dstConfig the pixel config of the destination buffer
Robert Phillipse78b7252017-04-06 07:59:41 -0400123 * @param dstColorSpace color space of the destination buffer
124 * @param buffer memory to read the rectangle into.
125 * @param rowBytes number of bytes bewtween consecutive rows. Zero means rows are tightly
126 * packed.
127 * @param pixelOpsFlags see PixelOpsFlags enum above.
128 *
129 * @return true if the read succeeded, false if not. The read can fail because of an unsupported
130 * pixel configs
131 */
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400132 bool readSurfacePixels(GrSurfaceContext* src,
Robert Phillipse78b7252017-04-06 07:59:41 -0400133 int left, int top, int width, int height,
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400134 GrPixelConfig dstConfig, SkColorSpace* dstColorSpace, void* buffer,
Robert Phillipse78b7252017-04-06 07:59:41 -0400135 size_t rowBytes = 0,
136 uint32_t pixelOpsFlags = 0);
137
138 /**
139 * Writes a rectangle of pixels to a surface.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400140 * @param dst the surface context to write to.
Robert Phillipse78b7252017-04-06 07:59:41 -0400141 * @param left left edge of the rectangle to write (inclusive)
142 * @param top top edge of the rectangle to write (inclusive)
143 * @param width width of rectangle to write in pixels.
144 * @param height height of rectangle to write in pixels.
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400145 * @param srcConfig the pixel config of the source buffer
Robert Phillipse78b7252017-04-06 07:59:41 -0400146 * @param srcColorSpace color space of the source buffer
147 * @param buffer memory to read pixels from
148 * @param rowBytes number of bytes between consecutive rows. Zero
149 * means rows are tightly packed.
150 * @param pixelOpsFlags see PixelOpsFlags enum above.
151 * @return true if the write succeeded, false if not. The write can fail because of an
152 * unsupported combination of surface and src configs.
153 */
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400154 bool writeSurfacePixels(GrSurfaceContext* dst,
Robert Phillipse78b7252017-04-06 07:59:41 -0400155 int left, int top, int width, int height,
Robert Phillipsf41c22f2017-04-18 07:48:58 -0400156 GrPixelConfig srcConfig, SkColorSpace* srcColorSpace, const void* buffer,
Robert Phillipse78b7252017-04-06 07:59:41 -0400157 size_t rowBytes,
158 uint32_t pixelOpsFlags = 0);
159
Greg Danielfc978fd2017-04-13 09:54:12 -0400160 GrBackend getBackend() const { return fContext->fBackend; }
161
robertphillips4fd74ae2016-08-03 14:26:53 -0700162private:
163 explicit GrContextPriv(GrContext* context) : fContext(context) {}
Robert Phillipseb35f4d2017-03-21 07:56:47 -0400164 GrContextPriv(const GrContextPriv&); // unimpl
robertphillips4fd74ae2016-08-03 14:26:53 -0700165 GrContextPriv& operator=(const GrContextPriv&); // unimpl
166
167 // No taking addresses of this type.
168 const GrContextPriv* operator&() const;
169 GrContextPriv* operator&();
170
171 GrContext* fContext;
172
173 friend class GrContext; // to construct/copy this type.
174};
175
176inline GrContextPriv GrContext::contextPriv() { return GrContextPriv(this); }
177
178inline const GrContextPriv GrContext::contextPriv () const {
179 return GrContextPriv(const_cast<GrContext*>(this));
180}
181
182#endif