2017-04-18 19:52:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GrBackendSurface_DEFINED
|
|
|
|
#define GrBackendSurface_DEFINED
|
|
|
|
|
|
|
|
#include "GrTypes.h"
|
2017-05-01 13:50:58 +00:00
|
|
|
#include "gl/GrGLTypes.h"
|
2017-07-07 16:56:11 +00:00
|
|
|
#include "mock/GrMockTypes.h"
|
2017-06-14 01:43:29 +00:00
|
|
|
|
|
|
|
#ifdef SK_VULKAN
|
2017-05-01 13:50:58 +00:00
|
|
|
#include "vk/GrVkTypes.h"
|
2017-06-14 01:43:29 +00:00
|
|
|
#endif
|
2017-04-18 19:52:36 +00:00
|
|
|
|
2018-02-13 22:03:00 +00:00
|
|
|
class SK_API GrBackendFormat {
|
|
|
|
public:
|
|
|
|
// Creates an invalid backend format.
|
|
|
|
GrBackendFormat() : fValid(false) {}
|
|
|
|
|
|
|
|
static GrBackendFormat MakeGL(GrGLenum format, GrGLenum target) {
|
|
|
|
return GrBackendFormat(format, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SK_VULKAN
|
|
|
|
static GrBackendFormat MakeVK(VkFormat format) {
|
|
|
|
return GrBackendFormat(format);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static GrBackendFormat MakeMock(GrPixelConfig config) {
|
|
|
|
return GrBackendFormat(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
GrBackend backend() const {return fBackend; }
|
|
|
|
|
|
|
|
// If the backend API is GL, these return a pointer to the format and target. Otherwise
|
|
|
|
// it returns nullptr.
|
|
|
|
const GrGLenum* getGLFormat() const;
|
|
|
|
const GrGLenum* getGLTarget() const;
|
|
|
|
|
|
|
|
#ifdef SK_VULKAN
|
|
|
|
// If the backend API is Vulkan, this returns a pointer to a VkFormat. Otherwise
|
|
|
|
// it returns nullptr
|
|
|
|
const VkFormat* getVkFormat() const;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// If the backend API is Mock, this returns a pointer to a GrPixelConfig. Otherwise
|
|
|
|
// it returns nullptr.
|
|
|
|
const GrPixelConfig* getMockFormat() const;
|
|
|
|
|
|
|
|
// Returns true if the backend format has been initialized.
|
|
|
|
bool isValid() const { return fValid; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
GrBackendFormat(GrGLenum format, GrGLenum target);
|
|
|
|
|
|
|
|
#ifdef SK_VULKAN
|
|
|
|
GrBackendFormat(const VkFormat vkFormat);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
GrBackendFormat(const GrPixelConfig config);
|
|
|
|
|
|
|
|
GrBackend fBackend;
|
|
|
|
bool fValid;
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
GrGLenum fTarget; // GL_TEXTURE_2D, GL_TEXTURE_EXTERNAL or GL_TEXTURE_RECTANGLE
|
|
|
|
GrGLenum fFormat; // the sized, internal format of the GL resource
|
|
|
|
} fGL;
|
|
|
|
#ifdef SK_VULKAN
|
|
|
|
VkFormat fVkFormat;
|
|
|
|
#endif
|
|
|
|
GrPixelConfig fMockFormat;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-07-07 14:34:40 +00:00
|
|
|
class SK_API GrBackendTexture {
|
2017-04-18 19:52:36 +00:00
|
|
|
public:
|
2017-07-07 16:56:11 +00:00
|
|
|
// Creates an invalid backend texture.
|
|
|
|
GrBackendTexture() : fConfig(kUnknown_GrPixelConfig) {}
|
|
|
|
|
2017-12-04 16:23:19 +00:00
|
|
|
// GrGLTextureInfo::fFormat is ignored
|
|
|
|
// Deprecated: Should use version that does not take a GrPixelConfig instead
|
2017-04-18 19:52:36 +00:00
|
|
|
GrBackendTexture(int width,
|
|
|
|
int height,
|
2017-06-14 01:43:29 +00:00
|
|
|
GrPixelConfig config,
|
|
|
|
const GrGLTextureInfo& glInfo);
|
2017-04-18 19:52:36 +00:00
|
|
|
|
2017-12-04 16:23:19 +00:00
|
|
|
// GrGLTextureInfo::fFormat is ignored
|
|
|
|
// Deprecated: Should use version that does not take a GrPixelConfig instead
|
2017-10-12 16:27:11 +00:00
|
|
|
GrBackendTexture(int width,
|
|
|
|
int height,
|
|
|
|
GrPixelConfig config,
|
|
|
|
GrMipMapped,
|
|
|
|
const GrGLTextureInfo& glInfo);
|
|
|
|
|
2017-12-04 16:23:19 +00:00
|
|
|
// The GrGLTextureInfo must have a valid fFormat.
|
|
|
|
GrBackendTexture(int width,
|
|
|
|
int height,
|
|
|
|
GrMipMapped,
|
|
|
|
const GrGLTextureInfo& glInfo);
|
|
|
|
|
2017-06-14 01:43:29 +00:00
|
|
|
#ifdef SK_VULKAN
|
2017-04-18 19:52:36 +00:00
|
|
|
GrBackendTexture(int width,
|
|
|
|
int height,
|
2017-06-14 01:43:29 +00:00
|
|
|
const GrVkImageInfo& vkInfo);
|
|
|
|
#endif
|
2017-04-18 19:52:36 +00:00
|
|
|
|
2017-07-07 16:56:11 +00:00
|
|
|
GrBackendTexture(int width,
|
|
|
|
int height,
|
|
|
|
GrPixelConfig config,
|
|
|
|
const GrMockTextureInfo& mockInfo);
|
|
|
|
|
2017-10-12 16:27:11 +00:00
|
|
|
GrBackendTexture(int width,
|
|
|
|
int height,
|
|
|
|
GrPixelConfig config,
|
|
|
|
GrMipMapped,
|
|
|
|
const GrMockTextureInfo& mockInfo);
|
|
|
|
|
2017-04-18 19:52:36 +00:00
|
|
|
int width() const { return fWidth; }
|
|
|
|
int height() const { return fHeight; }
|
2017-10-12 16:27:11 +00:00
|
|
|
bool hasMipMaps() const { return GrMipMapped::kYes == fMipMapped; }
|
2017-04-18 19:52:36 +00:00
|
|
|
GrBackend backend() const {return fBackend; }
|
|
|
|
|
2017-06-13 22:16:08 +00:00
|
|
|
// If the backend API is GL, this returns a pointer to the GrGLTextureInfo struct. Otherwise
|
|
|
|
// it returns nullptr.
|
|
|
|
const GrGLTextureInfo* getGLTextureInfo() const;
|
2017-06-13 17:47:53 +00:00
|
|
|
|
2017-06-14 01:43:29 +00:00
|
|
|
#ifdef SK_VULKAN
|
|
|
|
// If the backend API is Vulkan, this returns a pointer to the GrVkImageInfo struct. Otherwise
|
|
|
|
// it returns nullptr.
|
|
|
|
const GrVkImageInfo* getVkImageInfo() const;
|
|
|
|
#endif
|
|
|
|
|
2017-07-07 16:56:11 +00:00
|
|
|
// If the backend API is Mock, this returns a pointer to the GrMockTextureInfo struct. Otherwise
|
|
|
|
// it returns nullptr.
|
|
|
|
const GrMockTextureInfo* getMockTextureInfo() const;
|
|
|
|
|
2017-10-12 19:44:50 +00:00
|
|
|
// Returns true if the backend texture has been initialized.
|
2017-07-07 16:56:11 +00:00
|
|
|
bool isValid() const { return fConfig != kUnknown_GrPixelConfig; }
|
|
|
|
|
2018-02-20 15:25:54 +00:00
|
|
|
GrPixelConfig testingOnly_getPixelConfig() const;
|
|
|
|
|
2017-10-12 19:44:50 +00:00
|
|
|
private:
|
2017-11-13 16:05:52 +00:00
|
|
|
// Friending for access to the GrPixelConfig
|
2017-12-19 18:15:02 +00:00
|
|
|
friend class SkImage;
|
2017-11-13 16:05:52 +00:00
|
|
|
friend class SkSurface;
|
2018-01-17 15:52:04 +00:00
|
|
|
friend class GrBackendTextureImageGenerator;
|
2018-01-23 21:38:14 +00:00
|
|
|
friend class GrProxyProvider;
|
2017-11-13 16:05:52 +00:00
|
|
|
friend class GrGpu;
|
|
|
|
friend class GrGLGpu;
|
|
|
|
friend class GrVkGpu;
|
|
|
|
GrPixelConfig config() const { return fConfig; }
|
|
|
|
|
2017-04-18 19:52:36 +00:00
|
|
|
int fWidth; //<! width in pixels
|
|
|
|
int fHeight; //<! height in pixels
|
|
|
|
GrPixelConfig fConfig;
|
2017-10-12 16:27:11 +00:00
|
|
|
GrMipMapped fMipMapped;
|
2017-04-18 19:52:36 +00:00
|
|
|
GrBackend fBackend;
|
|
|
|
|
|
|
|
union {
|
2017-06-13 22:16:08 +00:00
|
|
|
GrGLTextureInfo fGLInfo;
|
2017-06-14 01:43:29 +00:00
|
|
|
#ifdef SK_VULKAN
|
|
|
|
GrVkImageInfo fVkInfo;
|
|
|
|
#endif
|
2017-07-07 16:56:11 +00:00
|
|
|
GrMockTextureInfo fMockInfo;
|
2017-04-18 19:52:36 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-07-07 14:34:40 +00:00
|
|
|
class SK_API GrBackendRenderTarget {
|
2017-04-18 19:52:36 +00:00
|
|
|
public:
|
2017-11-16 19:59:48 +00:00
|
|
|
// Creates an invalid backend texture.
|
|
|
|
GrBackendRenderTarget() : fConfig(kUnknown_GrPixelConfig) {}
|
|
|
|
|
2017-12-19 18:15:02 +00:00
|
|
|
// GrGLTextureInfo::fFormat is ignored
|
|
|
|
// Deprecated: Should use version that does not take a GrPixelConfig instead
|
2017-04-18 19:52:36 +00:00
|
|
|
GrBackendRenderTarget(int width,
|
|
|
|
int height,
|
|
|
|
int sampleCnt,
|
|
|
|
int stencilBits,
|
2017-06-14 01:43:29 +00:00
|
|
|
GrPixelConfig config,
|
|
|
|
const GrGLFramebufferInfo& glInfo);
|
2017-04-18 19:52:36 +00:00
|
|
|
|
2017-12-19 18:15:02 +00:00
|
|
|
// The GrGLTextureInfo must have a valid fFormat.
|
|
|
|
GrBackendRenderTarget(int width,
|
|
|
|
int height,
|
|
|
|
int sampleCnt,
|
|
|
|
int stencilBits,
|
|
|
|
const GrGLFramebufferInfo& glInfo);
|
|
|
|
|
2017-06-14 01:43:29 +00:00
|
|
|
#ifdef SK_VULKAN
|
2017-04-18 19:52:36 +00:00
|
|
|
GrBackendRenderTarget(int width,
|
|
|
|
int height,
|
|
|
|
int sampleCnt,
|
|
|
|
int stencilBits,
|
2017-06-14 01:43:29 +00:00
|
|
|
const GrVkImageInfo& vkInfo);
|
|
|
|
#endif
|
2017-04-18 19:52:36 +00:00
|
|
|
|
|
|
|
int width() const { return fWidth; }
|
|
|
|
int height() const { return fHeight; }
|
|
|
|
int sampleCnt() const { return fSampleCnt; }
|
|
|
|
int stencilBits() const { return fStencilBits; }
|
|
|
|
GrBackend backend() const {return fBackend; }
|
|
|
|
|
2017-06-13 22:16:08 +00:00
|
|
|
// If the backend API is GL, this returns a pointer to the GrGLFramebufferInfo struct. Otherwise
|
|
|
|
// it returns nullptr.
|
|
|
|
const GrGLFramebufferInfo* getGLFramebufferInfo() const;
|
2017-06-13 17:47:53 +00:00
|
|
|
|
2017-06-14 01:43:29 +00:00
|
|
|
#ifdef SK_VULKAN
|
|
|
|
// If the backend API is Vulkan, this returns a pointer to the GrVkImageInfo struct. Otherwise
|
|
|
|
// it returns nullptr
|
|
|
|
const GrVkImageInfo* getVkImageInfo() const;
|
|
|
|
#endif
|
|
|
|
|
2017-11-16 19:59:48 +00:00
|
|
|
// Returns true if the backend texture has been initialized.
|
|
|
|
bool isValid() const { return fConfig != kUnknown_GrPixelConfig; }
|
|
|
|
|
2018-02-20 15:25:54 +00:00
|
|
|
GrPixelConfig testingOnly_getPixelConfig() const;
|
|
|
|
|
2017-04-18 19:52:36 +00:00
|
|
|
private:
|
2017-11-13 16:05:52 +00:00
|
|
|
// Friending for access to the GrPixelConfig
|
|
|
|
friend class SkSurface;
|
2017-12-19 18:15:02 +00:00
|
|
|
friend class SkSurface_Gpu;
|
|
|
|
friend class SkImage_Gpu;
|
2017-11-13 16:05:52 +00:00
|
|
|
friend class GrGpu;
|
|
|
|
friend class GrGLGpu;
|
2018-02-20 15:25:54 +00:00
|
|
|
friend class GrProxyProvider;
|
2017-11-13 16:05:52 +00:00
|
|
|
friend class GrVkGpu;
|
|
|
|
GrPixelConfig config() const { return fConfig; }
|
|
|
|
|
2017-04-18 19:52:36 +00:00
|
|
|
int fWidth; //<! width in pixels
|
|
|
|
int fHeight; //<! height in pixels
|
|
|
|
|
|
|
|
int fSampleCnt;
|
|
|
|
int fStencilBits;
|
|
|
|
GrPixelConfig fConfig;
|
|
|
|
|
|
|
|
GrBackend fBackend;
|
|
|
|
|
|
|
|
union {
|
2017-06-13 22:16:08 +00:00
|
|
|
GrGLFramebufferInfo fGLInfo;
|
2017-06-14 01:43:29 +00:00
|
|
|
#ifdef SK_VULKAN
|
|
|
|
GrVkImageInfo fVkInfo;
|
|
|
|
#endif
|
2017-04-18 19:52:36 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|