2012-06-21 21:09:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GrSurface_DEFINED
|
|
|
|
#define GrSurface_DEFINED
|
|
|
|
|
|
|
|
#include "GrTypes.h"
|
2014-07-25 15:35:45 +00:00
|
|
|
#include "GrGpuResource.h"
|
2014-09-30 19:18:44 +00:00
|
|
|
#include "SkImageInfo.h"
|
2013-08-14 21:56:37 +00:00
|
|
|
#include "SkRect.h"
|
2012-06-21 21:09:06 +00:00
|
|
|
|
2014-09-30 13:58:20 +00:00
|
|
|
class GrRenderTarget;
|
2014-09-30 19:18:44 +00:00
|
|
|
class GrSurfacePriv;
|
|
|
|
class GrTexture;
|
2012-06-21 21:09:06 +00:00
|
|
|
|
2014-07-25 15:35:45 +00:00
|
|
|
class GrSurface : public GrGpuResource {
|
2012-06-21 21:09:06 +00:00
|
|
|
public:
|
|
|
|
SK_DECLARE_INST_COUNT(GrSurface);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the width of the surface.
|
|
|
|
*/
|
|
|
|
int width() const { return fDesc.fWidth; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the height of the surface.
|
|
|
|
*/
|
|
|
|
int height() const { return fDesc.fHeight; }
|
|
|
|
|
2013-08-14 21:56:37 +00:00
|
|
|
/**
|
|
|
|
* Helper that gets the width and height of the surface as a bounding rectangle.
|
|
|
|
*/
|
|
|
|
void getBoundsRect(SkRect* rect) const { rect->setWH(SkIntToScalar(this->width()),
|
|
|
|
SkIntToScalar(this->height())); }
|
|
|
|
|
2013-01-28 16:42:38 +00:00
|
|
|
GrSurfaceOrigin origin() const {
|
2013-08-17 00:02:59 +00:00
|
|
|
SkASSERT(kTopLeft_GrSurfaceOrigin == fDesc.fOrigin || kBottomLeft_GrSurfaceOrigin == fDesc.fOrigin);
|
2013-02-05 19:50:46 +00:00
|
|
|
return fDesc.fOrigin;
|
2012-10-26 19:01:17 +00:00
|
|
|
}
|
|
|
|
|
2012-06-21 21:09:06 +00:00
|
|
|
/**
|
|
|
|
* Retrieves the pixel config specified when the surface was created.
|
|
|
|
* For render targets this can be kUnknown_GrPixelConfig
|
|
|
|
* if client asked us to render to a target that has a pixel
|
|
|
|
* config that isn't equivalent with one of our configs.
|
|
|
|
*/
|
|
|
|
GrPixelConfig config() const { return fDesc.fConfig; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the descriptor describing the surface
|
|
|
|
*/
|
2014-10-28 21:33:06 +00:00
|
|
|
const GrSurfaceDesc& desc() const { return fDesc; }
|
2012-06-21 21:09:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the texture associated with the surface, may be NULL.
|
|
|
|
*/
|
2014-11-03 16:47:23 +00:00
|
|
|
virtual GrTexture* asTexture() { return NULL; }
|
|
|
|
virtual const GrTexture* asTexture() const { return NULL; }
|
2012-06-21 21:09:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the render target underlying this surface, may be NULL.
|
|
|
|
*/
|
2014-11-03 16:47:23 +00:00
|
|
|
virtual GrRenderTarget* asRenderTarget() { return NULL; }
|
|
|
|
virtual const GrRenderTarget* asRenderTarget() const { return NULL; }
|
2012-06-21 21:09:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads a rectangle of pixels from the surface.
|
|
|
|
* @param left left edge of the rectangle to read (inclusive)
|
|
|
|
* @param top top edge of the rectangle to read (inclusive)
|
|
|
|
* @param width width of rectangle to read in pixels.
|
|
|
|
* @param height height of rectangle to read in pixels.
|
|
|
|
* @param config the pixel config of the destination buffer
|
|
|
|
* @param buffer memory to read the rectangle into.
|
2012-10-26 19:01:17 +00:00
|
|
|
* @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
|
2012-08-20 19:22:38 +00:00
|
|
|
* packed.
|
|
|
|
* @param pixelOpsFlags See the GrContext::PixelOpsFlags enum.
|
2012-06-21 21:09:06 +00:00
|
|
|
*
|
2012-08-20 19:22:38 +00:00
|
|
|
* @return true if the read succeeded, false if not. The read can fail because of an unsupported
|
|
|
|
* pixel config.
|
2012-06-21 21:09:06 +00:00
|
|
|
*/
|
2014-10-13 19:32:55 +00:00
|
|
|
bool readPixels(int left, int top, int width, int height,
|
|
|
|
GrPixelConfig config,
|
|
|
|
void* buffer,
|
|
|
|
size_t rowBytes = 0,
|
|
|
|
uint32_t pixelOpsFlags = 0);
|
2012-06-21 21:09:06 +00:00
|
|
|
|
|
|
|
/**
|
2012-08-20 19:22:38 +00:00
|
|
|
* Copy the src pixels [buffer, rowbytes, pixelconfig] into the surface at the specified
|
|
|
|
* rectangle.
|
2012-06-21 21:09:06 +00:00
|
|
|
* @param left left edge of the rectangle to write (inclusive)
|
|
|
|
* @param top top edge of the rectangle to write (inclusive)
|
|
|
|
* @param width width of rectangle to write in pixels.
|
|
|
|
* @param height height of rectangle to write in pixels.
|
|
|
|
* @param config the pixel config of the source buffer
|
|
|
|
* @param buffer memory to read the rectangle from.
|
2012-10-26 19:01:17 +00:00
|
|
|
* @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
|
2012-08-20 19:22:38 +00:00
|
|
|
* packed.
|
|
|
|
* @param pixelOpsFlags See the GrContext::PixelOpsFlags enum.
|
2014-10-14 18:47:22 +00:00
|
|
|
*
|
|
|
|
* @return true if the read succeeded, false if not. The read can fail because of an unsupported
|
|
|
|
* pixel config.
|
2012-06-21 21:09:06 +00:00
|
|
|
*/
|
2014-10-13 19:32:55 +00:00
|
|
|
bool writePixels(int left, int top, int width, int height,
|
|
|
|
GrPixelConfig config,
|
|
|
|
const void* buffer,
|
|
|
|
size_t rowBytes = 0,
|
|
|
|
uint32_t pixelOpsFlags = 0);
|
2012-06-21 21:09:06 +00:00
|
|
|
|
2014-10-07 12:56:02 +00:00
|
|
|
/**
|
|
|
|
* After this returns any pending writes to the surface will be issued to the backend 3D API.
|
|
|
|
*/
|
|
|
|
void flushWrites();
|
|
|
|
|
2014-11-03 22:28:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* After this returns any pending writes to the surface will be issued to the backend 3D API and
|
|
|
|
* if the surface has MSAA it will be resolved.
|
|
|
|
*/
|
|
|
|
void prepareForExternalRead();
|
|
|
|
|
2014-09-30 19:18:44 +00:00
|
|
|
/** Access methods that are only to be used within Skia code. */
|
|
|
|
inline GrSurfacePriv surfacePriv();
|
|
|
|
inline const GrSurfacePriv surfacePriv() const;
|
2014-09-30 13:58:20 +00:00
|
|
|
|
2014-09-30 19:18:44 +00:00
|
|
|
protected:
|
|
|
|
// Methods made available via GrSurfacePriv
|
|
|
|
SkImageInfo info() const;
|
|
|
|
bool savePixels(const char* filename);
|
2014-09-22 19:21:08 +00:00
|
|
|
bool hasPendingRead() const;
|
|
|
|
bool hasPendingWrite() const;
|
|
|
|
bool hasPendingIO() const;
|
2014-09-30 19:18:44 +00:00
|
|
|
|
|
|
|
// Provides access to methods that should be public within Skia code.
|
|
|
|
friend class GrSurfacePriv;
|
2014-09-22 19:21:08 +00:00
|
|
|
|
2015-01-14 18:42:08 +00:00
|
|
|
GrSurface(GrGpu* gpu, LifeCycle lifeCycle, const GrSurfaceDesc& desc)
|
|
|
|
: INHERITED(gpu, lifeCycle)
|
|
|
|
, fDesc(desc) {
|
2012-06-21 21:09:06 +00:00
|
|
|
}
|
|
|
|
|
2014-10-28 21:33:06 +00:00
|
|
|
GrSurfaceDesc fDesc;
|
2012-10-26 19:01:17 +00:00
|
|
|
|
2012-06-21 21:09:06 +00:00
|
|
|
private:
|
2014-07-25 15:35:45 +00:00
|
|
|
typedef GrGpuResource INHERITED;
|
2012-06-21 21:09:06 +00:00
|
|
|
};
|
|
|
|
|
2014-09-30 19:18:44 +00:00
|
|
|
#endif
|