HomeSort by relevance Sort by last modified time
    Searched defs:SkGpuDevice (Results 1 - 2 of 2) sorted by null

  /external/skia/src/gpu/
SkGpuDevice.h 32 class SK_API SkGpuDevice : public SkBaseDevice {
39 * Creates an SkGpuDevice from a GrRenderTarget.
41 static SkGpuDevice* Create(GrRenderTarget* target, const SkSurfaceProps*, unsigned flags = 0);
44 * Creates an SkGpuDevice from a GrRenderTarget whose texture width/height is
47 static SkGpuDevice* Create(GrRenderTarget* target, int width, int height,
55 static SkGpuDevice* Create(GrContext*, SkSurface::Budgeted, const SkImageInfo&,
58 virtual ~SkGpuDevice();
60 SkGpuDevice* cloneDevice(const SkSurfaceProps& props) {
64 return static_cast<SkGpuDevice*>(dev);
160 SkGpuDevice(GrRenderTarget*, int width, int height, const SkSurfaceProps*, unsigned flags)
    [all...]
SkGpuDevice.cpp 8 #include "SkGpuDevice.h"
123 SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, const SkSurfaceProps* props, unsigned flags) {
124 return SkGpuDevice::Create(rt, rt->width(), rt->height(), props, flags);
127 SkGpuDevice* SkGpuDevice::Create(GrRenderTarget* rt, int width, int height,
132 return SkNEW_ARGS(SkGpuDevice, (rt, width, height, props, flags));
151 SkGpuDevice::SkGpuDevice(GrRenderTarget* rt, int width, int height,
173 GrRenderTarget* SkGpuDevice::CreateRenderTarget(GrContext* context, SkSurface::Budgeted budgeted
    [all...]

Completed in 474 milliseconds