/* * Copyright 2021 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef BaseDevice_DEFINED #define BaseDevice_DEFINED #include "include/core/SkImage.h" #include "include/private/GrTypesPriv.h" #include "src/core/SkDevice.h" class GrRenderTargetProxy; class GrSurfaceProxyView; namespace skgpu { class SurfaceContext; class SurfaceFillContext; #if SK_GPU_V1 namespace v1 { class SurfaceDrawContext; } #endif // SK_GPU_V1 /* * The most important thing to remember about this class hierarchy is there is no skgpu::SDC * base class so the v1 and v2 Devices privately hold their own version of the SDC. The best * the BaseDevice can do is to return the SDC-variant as a generic SFC. * * skgpu::BaseDevice * / \ * v1::Device v2::Device * - v1::SDC - v2::SDC */ class BaseDevice : public SkBaseDevice { public: enum class InitContents { kClear, kUninit }; BaseDevice(sk_sp, const SkImageInfo&, const SkSurfaceProps&); GrSurfaceProxyView readSurfaceView(); BaseDevice* asGpuDevice() override { return this; } #if SK_GPU_V1 virtual v1::SurfaceDrawContext* surfaceDrawContext() { return nullptr; } #endif virtual SurfaceFillContext* surfaceFillContext() = 0; GrRenderTargetProxy* targetProxy(); GrRecordingContext* recordingContext() const { return fContext.get(); } virtual bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores, bool deleteSemaphoresAfterWait) = 0; virtual void discard() = 0; virtual bool replaceBackingProxy(SkSurface::ContentChangeMode, sk_sp, GrColorType, sk_sp, GrSurfaceOrigin, const SkSurfaceProps&) = 0; bool replaceBackingProxy(SkSurface::ContentChangeMode); using RescaleGamma = SkImage::RescaleGamma; using RescaleMode = SkImage::RescaleMode; using ReadPixelsCallback = SkImage::ReadPixelsCallback; using ReadPixelsContext = SkImage::ReadPixelsContext; virtual void asyncRescaleAndReadPixels(const SkImageInfo& info, const SkIRect& srcRect, RescaleGamma rescaleGamma, RescaleMode rescaleMode, ReadPixelsCallback callback, ReadPixelsContext context) = 0; virtual void asyncRescaleAndReadPixelsYUV420(SkYUVColorSpace yuvColorSpace, sk_sp dstColorSpace, const SkIRect& srcRect, SkISize dstSize, RescaleGamma rescaleGamma, RescaleMode, ReadPixelsCallback callback, ReadPixelsContext context) = 0; protected: enum class DeviceFlags { kNone = 0, kNeedClear = 1 << 0, //!< Surface requires an initial clear kIsOpaque = 1 << 1, //!< Hint from client that rendering to this device will be // opaque even if the config supports alpha. }; GR_DECL_BITFIELD_CLASS_OPS_FRIENDS(DeviceFlags); static bool CheckAlphaTypeAndGetFlags(SkAlphaType, InitContents, DeviceFlags*); static SkImageInfo MakeInfo(SurfaceContext*, DeviceFlags); sk_sp fContext; private: using INHERITED = SkBaseDevice; }; GR_MAKE_BITFIELD_CLASS_OPS(BaseDevice::DeviceFlags) } // namespace skgpu #endif // BaseDevice_DEFINED