2010-12-22 21:39:39 +00:00
|
|
|
/*
|
|
|
|
Copyright 2010 Google Inc.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SkGpuCanvas_DEFINED
|
|
|
|
#define SkGpuCanvas_DEFINED
|
|
|
|
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
|
|
|
|
class GrContext;
|
2011-01-18 20:57:22 +00:00
|
|
|
class GrRenderTarget;
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Subclass of canvas that creates devices compatible with the GrContext pass
|
|
|
|
* to the canvas' constructor.
|
|
|
|
*/
|
|
|
|
class SkGpuCanvas : public SkCanvas {
|
|
|
|
public:
|
|
|
|
/**
|
2011-01-11 18:59:23 +00:00
|
|
|
* The GrContext object is reference counted. When passed to our
|
|
|
|
* constructor, its reference count is incremented. In our destructor, the
|
2010-12-22 21:39:39 +00:00
|
|
|
* GrGpu's reference count will be decremented.
|
2011-01-18 20:57:22 +00:00
|
|
|
* GrRenderTarget represents the rendering destination in the underlying
|
|
|
|
* 3D API. Its reference count is incremented in the constructor and
|
|
|
|
* decremented in the destructor.
|
|
|
|
* SkGpuDevice::Current3DApiRenderTarget() can be passed as a special
|
|
|
|
* value that will cause the factory to create a render target object
|
|
|
|
* that reflects the state of the underlying 3D API at the time of
|
|
|
|
* construction.
|
2010-12-22 21:39:39 +00:00
|
|
|
*/
|
2011-01-18 20:57:22 +00:00
|
|
|
explicit SkGpuCanvas(GrContext*, GrRenderTarget*);
|
2010-12-22 21:39:39 +00:00
|
|
|
virtual ~SkGpuCanvas();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override from SkCanvas. Returns true, and if not-null, sets size to
|
|
|
|
* be the width/height of our viewport.
|
|
|
|
*/
|
|
|
|
virtual bool getViewport(SkIPoint* size) const;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
virtual int saveLayer(const SkRect* bounds, const SkPaint* paint,
|
|
|
|
SaveFlags flags = kARGB_ClipLayer_SaveFlag) {
|
|
|
|
return this->save(flags);
|
|
|
|
}
|
|
|
|
#endif
|
2011-01-11 18:59:23 +00:00
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
private:
|
|
|
|
GrContext* fContext;
|
|
|
|
|
|
|
|
typedef SkCanvas INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|