GrGpu.h revision d1aa8ff8700cbc083c8c27b7368a8482e65cdb08
1/*
2 * Copyright 2011 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 GrGpu_DEFINED
9#define GrGpu_DEFINED
10
11#include "GrDrawTarget.h"
12#include "GrPathRendering.h"
13#include "GrProgramDesc.h"
14#include "SkPath.h"
15
16class GrContext;
17class GrIndexBufferAllocPool;
18class GrPath;
19class GrPathRange;
20class GrPathRenderer;
21class GrPathRendererChain;
22class GrStencilBuffer;
23class GrVertexBufferAllocPool;
24
25class GrGpu : public GrClipTarget {
26public:
27
28    /**
29     * Additional blend coefficients for dual source blending, not exposed
30     * through GrPaint/GrContext.
31     */
32    enum ExtendedBlendCoeffs {
33        // source 2 refers to second output color when
34        // using dual source blending.
35        kS2C_GrBlendCoeff = kPublicGrBlendCoeffCount,
36        kIS2C_GrBlendCoeff,
37        kS2A_GrBlendCoeff,
38        kIS2A_GrBlendCoeff,
39
40        kTotalGrBlendCoeffCount
41    };
42
43    /**
44     * Create an instance of GrGpu that matches the specified backend. If the requested backend is
45     * not supported (at compile-time or run-time) this returns NULL. The context will not be
46     * fully constructed and should not be used by GrGpu until after this function returns.
47     */
48    static GrGpu* Create(GrBackend, GrBackendContext, GrContext* context);
49
50    ////////////////////////////////////////////////////////////////////////////
51
52    GrGpu(GrContext* context);
53    virtual ~GrGpu();
54
55    GrContext* getContext() { return this->INHERITED::getContext(); }
56    const GrContext* getContext() const { return this->INHERITED::getContext(); }
57
58    GrPathRendering* pathRendering() {
59        return fPathRendering.get();
60    }
61
62    // Called by GrContext when the underlying backend context has been destroyed.
63    // GrGpu should use this to ensure that no backend API calls will be made from
64    // here onward, including in its destructor. Subclasses should call
65    // INHERITED::contextAbandoned() if they override this.
66    virtual void contextAbandoned();
67
68    /**
69     * The GrGpu object normally assumes that no outsider is setting state
70     * within the underlying 3D API's context/device/whatever. This call informs
71     * the GrGpu that the state was modified and it shouldn't make assumptions
72     * about the state.
73     */
74    void markContextDirty(uint32_t state = kAll_GrBackendState) {
75        fResetBits |= state;
76    }
77
78    void unimpl(const char[]);
79
80    /**
81     * Creates a texture object. If desc width or height is not a power of
82     * two but underlying API requires a power of two texture then srcData
83     * will be embedded in a power of two texture. The extra width and height
84     * is filled as though srcData were rendered clamped into the texture.
85     * The exception is when using compressed data formats. In this case, the
86     * desc width and height must be a multiple of the compressed format block
87     * size otherwise this function returns NULL. Similarly, if the underlying
88     * API requires a power of two texture and the source width and height are not
89     * a power of two, then this function returns NULL.
90     *
91     * If kRenderTarget_TextureFlag is specified the GrRenderTarget is
92     * accessible via GrTexture::asRenderTarget(). The texture will hold a ref
93     * on the render target until the texture is destroyed. Compressed textures
94     * cannot have the kRenderTarget_TextureFlag set.
95     *
96     * @param desc        describes the texture to be created.
97     * @param srcData     texel data to load texture. Begins with full-size
98     *                    palette data for paletted textures. For compressed
99     *                    formats it contains the compressed pixel data. Otherwise,
100     *                    it contains width*height texels. If NULL texture data
101     *                    is uninitialized.
102     * @param rowBytes    the number of bytes between consecutive rows. Zero
103     *                    means rows are tightly packed. This field is ignored
104     *                    for compressed formats.
105     *
106     * @return    The texture object if successful, otherwise NULL.
107     */
108    GrTexture* createTexture(const GrSurfaceDesc& desc,
109                             const void* srcData, size_t rowBytes);
110
111    /**
112     * Implements GrContext::wrapBackendTexture
113     */
114    GrTexture* wrapBackendTexture(const GrBackendTextureDesc&);
115
116    /**
117     * Implements GrContext::wrapBackendTexture
118     */
119    GrRenderTarget* wrapBackendRenderTarget(const GrBackendRenderTargetDesc&);
120
121    /**
122     * Creates a vertex buffer.
123     *
124     * @param size    size in bytes of the vertex buffer
125     * @param dynamic hints whether the data will be frequently changed
126     *                by either GrVertexBuffer::map() or
127     *                GrVertexBuffer::updateData().
128     *
129     * @return    The vertex buffer if successful, otherwise NULL.
130     */
131    GrVertexBuffer* createVertexBuffer(size_t size, bool dynamic);
132
133    /**
134     * Creates an index buffer.
135     *
136     * @param size    size in bytes of the index buffer
137     * @param dynamic hints whether the data will be frequently changed
138     *                by either GrIndexBuffer::map() or
139     *                GrIndexBuffer::updateData().
140     *
141     * @return The index buffer if successful, otherwise NULL.
142     */
143    GrIndexBuffer* createIndexBuffer(size_t size, bool dynamic);
144
145    /**
146     * Creates an index buffer for instance drawing with a specific pattern.
147     *
148     * @param pattern     the pattern to repeat
149     * @param patternSize size in bytes of the pattern
150     * @param reps        number of times to repeat the pattern
151     * @param vertCount   number of vertices the pattern references
152     * @param dynamic     hints whether the data will be frequently changed
153     *                    by either GrIndexBuffer::map() or
154     *                    GrIndexBuffer::updateData().
155     *
156     * @return The index buffer if successful, otherwise NULL.
157     */
158    GrIndexBuffer* createInstancedIndexBuffer(const uint16_t* pattern,
159                                              int patternSize,
160                                              int reps,
161                                              int vertCount,
162                                              bool isDynamic = false);
163
164    /**
165     * Returns an index buffer that can be used to render quads.
166     * Six indices per quad: 0, 1, 2, 0, 2, 3, etc.
167     * The max number of quads can be queried using GrIndexBuffer::maxQuads().
168     * Draw with kTriangles_GrPrimitiveType
169     * @ return the quad index buffer
170     */
171    const GrIndexBuffer* getQuadIndexBuffer() const;
172
173    /**
174     * Resolves MSAA.
175     */
176    void resolveRenderTarget(GrRenderTarget* target);
177
178    /**
179     * Gets a preferred 8888 config to use for writing/reading pixel data to/from a surface with
180     * config surfaceConfig. The returned config must have at least as many bits per channel as the
181     * readConfig or writeConfig param.
182     */
183    virtual GrPixelConfig preferredReadPixelsConfig(GrPixelConfig readConfig,
184                                                    GrPixelConfig surfaceConfig) const {
185        return readConfig;
186    }
187    virtual GrPixelConfig preferredWritePixelsConfig(GrPixelConfig writeConfig,
188                                                     GrPixelConfig surfaceConfig) const {
189        return writeConfig;
190    }
191
192    /**
193     * Called before uploading writing pixels to a GrTexture when the src pixel config doesn't
194     * match the texture's config.
195     */
196    virtual bool canWriteTexturePixels(const GrTexture*, GrPixelConfig srcConfig) const = 0;
197
198    /**
199     * OpenGL's readPixels returns the result bottom-to-top while the skia
200     * API is top-to-bottom. Thus we have to do a y-axis flip. The obvious
201     * solution is to have the subclass do the flip using either the CPU or GPU.
202     * However, the caller (GrContext) may have transformations to apply and can
203     * simply fold in the y-flip for free. On the other hand, the subclass may
204     * be able to do it for free itself. For example, the subclass may have to
205     * do memcpys to handle rowBytes that aren't tight. It could do the y-flip
206     * concurrently.
207     *
208     * This function returns true if a y-flip is required to put the pixels in
209     * top-to-bottom order and the subclass cannot do it for free.
210     *
211     * See read pixels for the params
212     * @return true if calling readPixels with the same set of params will
213     *              produce bottom-to-top data
214     */
215     virtual bool readPixelsWillPayForYFlip(GrRenderTarget* renderTarget,
216                                            int left, int top,
217                                            int width, int height,
218                                            GrPixelConfig config,
219                                            size_t rowBytes) const = 0;
220     /**
221      * This should return true if reading a NxM rectangle of pixels from a
222      * render target is faster if the target has dimensons N and M and the read
223      * rectangle has its top-left at 0,0.
224      */
225     virtual bool fullReadPixelsIsFasterThanPartial() const { return false; };
226
227    /**
228     * Reads a rectangle of pixels from a render target.
229     *
230     * @param renderTarget  the render target to read from. NULL means the
231     *                      current render target.
232     * @param left          left edge of the rectangle to read (inclusive)
233     * @param top           top edge of the rectangle to read (inclusive)
234     * @param width         width of rectangle to read in pixels.
235     * @param height        height of rectangle to read in pixels.
236     * @param config        the pixel config of the destination buffer
237     * @param buffer        memory to read the rectangle into.
238     * @param rowBytes      the number of bytes between consecutive rows. Zero
239     *                      means rows are tightly packed.
240     * @param invertY       buffer should be populated bottom-to-top as opposed
241     *                      to top-to-bottom (skia's usual order)
242     *
243     * @return true if the read succeeded, false if not. The read can fail
244     *              because of a unsupported pixel config or because no render
245     *              target is currently set.
246     */
247    bool readPixels(GrRenderTarget* renderTarget,
248                    int left, int top, int width, int height,
249                    GrPixelConfig config, void* buffer, size_t rowBytes);
250
251    /**
252     * Updates the pixels in a rectangle of a texture.
253     *
254     * @param left          left edge of the rectangle to write (inclusive)
255     * @param top           top edge of the rectangle to write (inclusive)
256     * @param width         width of rectangle to write in pixels.
257     * @param height        height of rectangle to write in pixels.
258     * @param config        the pixel config of the source buffer
259     * @param buffer        memory to read pixels from
260     * @param rowBytes      number of bytes between consecutive rows. Zero
261     *                      means rows are tightly packed.
262     */
263    bool writeTexturePixels(GrTexture* texture,
264                            int left, int top, int width, int height,
265                            GrPixelConfig config, const void* buffer,
266                            size_t rowBytes);
267
268    // GrDrawTarget overrides
269    virtual void clear(const SkIRect* rect, GrColor color, bool canIgnoreRect,
270                       GrRenderTarget* renderTarget) SK_OVERRIDE;
271
272    virtual void clearStencilClip(const SkIRect& rect,
273                                  bool insideClip,
274                                  GrRenderTarget* renderTarget = NULL) SK_OVERRIDE;
275
276    // After the client interacts directly with the 3D context state the GrGpu
277    // must resync its internal state and assumptions about 3D context state.
278    // Each time this occurs the GrGpu bumps a timestamp.
279    // state of the 3D context
280    // At 10 resets / frame and 60fps a 64bit timestamp will overflow in about
281    // a billion years.
282    typedef uint64_t ResetTimestamp;
283
284    // This timestamp is always older than the current timestamp
285    static const ResetTimestamp kExpiredTimestamp = 0;
286    // Returns a timestamp based on the number of times the context was reset.
287    // This timestamp can be used to lazily detect when cached 3D context state
288    // is dirty.
289    ResetTimestamp getResetTimestamp() const {
290        return fResetTimestamp;
291    }
292
293    enum DrawType {
294        kDrawPoints_DrawType,
295        kDrawLines_DrawType,
296        kDrawTriangles_DrawType,
297        kStencilPath_DrawType,
298        kDrawPath_DrawType,
299        kDrawPaths_DrawType,
300    };
301
302    static bool IsPathRenderingDrawType(DrawType type) {
303        return kDrawPath_DrawType == type || kDrawPaths_DrawType == type;
304    }
305
306    GrContext::GPUStats* gpuStats() { return &fGPUStats; }
307
308    virtual void buildProgramDesc(const GrOptDrawState&,
309                                  const GrProgramDesc::DescInfo&,
310                                  GrGpu::DrawType,
311                                  const GrDeviceCoordTexture* dstCopy,
312                                  GrProgramDesc*) = 0;
313
314protected:
315    DrawType PrimTypeToDrawType(GrPrimitiveType type) {
316        switch (type) {
317            case kTriangles_GrPrimitiveType:
318            case kTriangleStrip_GrPrimitiveType:
319            case kTriangleFan_GrPrimitiveType:
320                return kDrawTriangles_DrawType;
321            case kPoints_GrPrimitiveType:
322                return kDrawPoints_DrawType;
323            case kLines_GrPrimitiveType:
324            case kLineStrip_GrPrimitiveType:
325                return kDrawLines_DrawType;
326            default:
327                SkFAIL("Unexpected primitive type");
328                return kDrawTriangles_DrawType;
329        }
330    }
331
332    // prepares clip flushes gpu state before a draw
333    bool setupClipAndFlushState(DrawType,
334                                const GrDeviceCoordTexture* dstCopy,
335                                const SkRect* devBounds,
336                                GrDrawState::AutoRestoreEffects*,
337                                GrDrawState::AutoRestoreStencil*);
338
339    // Functions used to map clip-respecting stencil tests into normal
340    // stencil funcs supported by GPUs.
341    static GrStencilFunc ConvertStencilFunc(bool stencilInClip,
342                                            GrStencilFunc func);
343    static void ConvertStencilFuncAndMask(GrStencilFunc func,
344                                          bool clipInStencil,
345                                          unsigned int clipBit,
346                                          unsigned int userBits,
347                                          unsigned int* ref,
348                                          unsigned int* mask);
349
350    GrContext::GPUStats         fGPUStats;
351
352    struct GeometryPoolState {
353        const GrVertexBuffer* fPoolVertexBuffer;
354        int                   fPoolStartVertex;
355
356        const GrIndexBuffer*  fPoolIndexBuffer;
357        int                   fPoolStartIndex;
358    };
359    const GeometryPoolState& getGeomPoolState() {
360        return fGeomPoolStateStack.back();
361    }
362
363    // Helpers for setting up geometry state
364    void finalizeReservedVertices();
365    void finalizeReservedIndices();
366
367    SkAutoTDelete<GrPathRendering> fPathRendering;
368
369private:
370    // GrDrawTarget overrides
371    virtual bool onReserveVertexSpace(size_t vertexSize, int vertexCount, void** vertices) SK_OVERRIDE;
372    virtual bool onReserveIndexSpace(int indexCount, void** indices) SK_OVERRIDE;
373    virtual void releaseReservedVertexSpace() SK_OVERRIDE;
374    virtual void releaseReservedIndexSpace() SK_OVERRIDE;
375    virtual void geometrySourceWillPush() SK_OVERRIDE;
376    virtual void geometrySourceWillPop(const GeometrySrcState& restoredState) SK_OVERRIDE;
377
378
379    // called when the 3D context state is unknown. Subclass should emit any
380    // assumed 3D context state and dirty any state cache.
381    virtual void onResetContext(uint32_t resetBits) = 0;
382
383    // overridden by backend-specific derived class to create objects.
384    virtual GrTexture* onCreateTexture(const GrSurfaceDesc& desc,
385                                       const void* srcData,
386                                       size_t rowBytes) = 0;
387    virtual GrTexture* onCreateCompressedTexture(const GrSurfaceDesc& desc,
388                                                 const void* srcData) = 0;
389    virtual GrTexture* onWrapBackendTexture(const GrBackendTextureDesc&) = 0;
390    virtual GrRenderTarget* onWrapBackendRenderTarget(const GrBackendRenderTargetDesc&) = 0;
391    virtual GrVertexBuffer* onCreateVertexBuffer(size_t size, bool dynamic) = 0;
392    virtual GrIndexBuffer* onCreateIndexBuffer(size_t size, bool dynamic) = 0;
393
394    // overridden by backend-specific derived class to perform the clear and
395    // clearRect. NULL rect means clear whole target. If canIgnoreRect is
396    // true, it is okay to perform a full clear instead of a partial clear
397    virtual void onClear(GrRenderTarget*, const SkIRect* rect, GrColor color,
398                         bool canIgnoreRect) = 0;
399
400
401    // Overridden by backend specific classes to perform a clear of the stencil clip bits.  This is
402    // ONLY used by the the clip target
403    virtual void onClearStencilClip(GrRenderTarget*,
404                                    const SkIRect& rect,
405                                    bool insideClip) = 0;
406
407    // overridden by backend-specific derived class to perform the draw call.
408    virtual void onGpuDraw(const DrawInfo&) = 0;
409
410    // overridden by backend-specific derived class to perform the read pixels.
411    virtual bool onReadPixels(GrRenderTarget* target,
412                              int left, int top, int width, int height,
413                              GrPixelConfig,
414                              void* buffer,
415                              size_t rowBytes) = 0;
416
417    // overridden by backend-specific derived class to perform the texture update
418    virtual bool onWriteTexturePixels(GrTexture* texture,
419                                      int left, int top, int width, int height,
420                                      GrPixelConfig config, const void* buffer,
421                                      size_t rowBytes) = 0;
422
423    // overridden by backend-specific derived class to perform the resolve
424    virtual void onResolveRenderTarget(GrRenderTarget* target) = 0;
425
426    // width and height may be larger than rt (if underlying API allows it).
427    // Should attach the SB to the RT. Returns false if compatible sb could
428    // not be created.
429    virtual bool createStencilBufferForRenderTarget(GrRenderTarget*, int width, int height) = 0;
430
431    // attaches an existing SB to an existing RT.
432    virtual bool attachStencilBufferToRenderTarget(GrStencilBuffer*, GrRenderTarget*) = 0;
433
434    // The GrGpu typically records the clients requested state and then flushes
435    // deltas from previous state at draw time. This function does the
436    // backend-specific flush of the state.
437    // returns false if current state is unsupported.
438    virtual bool flushGraphicsState(DrawType,
439                                    const GrClipMaskManager::ScissorState&,
440                                    const GrDeviceCoordTexture* dstCopy) = 0;
441
442    // clears target's entire stencil buffer to 0
443    virtual void clearStencil(GrRenderTarget* target) = 0;
444
445    // Given a rt, find or create a stencil buffer and attach it
446    bool attachStencilBufferToRenderTarget(GrRenderTarget* target);
447
448    // GrDrawTarget overrides
449    virtual void onDraw(const DrawInfo&) SK_OVERRIDE;
450    virtual void onStencilPath(const GrPath*, GrPathRendering::FillType) SK_OVERRIDE;
451    virtual void onDrawPath(const GrPath*, GrPathRendering::FillType,
452                            const GrDeviceCoordTexture* dstCopy) SK_OVERRIDE;
453    virtual void onDrawPaths(const GrPathRange*,
454                             const uint32_t indices[], int count,
455                             const float transforms[], PathTransformType,
456                             GrPathRendering::FillType, const GrDeviceCoordTexture*) SK_OVERRIDE;
457
458    // readies the pools to provide vertex/index data.
459    void prepareVertexPool();
460    void prepareIndexPool();
461
462    void resetContext() {
463        this->onResetContext(fResetBits);
464        fResetBits = 0;
465        ++fResetTimestamp;
466    }
467
468    void handleDirtyContext() {
469        if (fResetBits) {
470            this->resetContext();
471        }
472    }
473
474    enum {
475        kPreallocGeomPoolStateStackCnt = 4,
476    };
477    SkSTArray<kPreallocGeomPoolStateStackCnt, GeometryPoolState, true>  fGeomPoolStateStack;
478    ResetTimestamp                                                      fResetTimestamp;
479    uint32_t                                                            fResetBits;
480    GrVertexBufferAllocPool*                                            fVertexPool;
481    GrIndexBufferAllocPool*                                             fIndexPool;
482    // counts number of uses of vertex/index pool in the geometry stack
483    int                                                                 fVertexPoolUseCnt;
484    int                                                                 fIndexPoolUseCnt;
485    // these are mutable so they can be created on-demand
486    mutable GrIndexBuffer*                                              fQuadIndexBuffer;
487
488    typedef GrClipTarget INHERITED;
489};
490
491#endif
492