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
|
|
|
|
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-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-10-12 16:27:11 +00:00
|
|
|
GrBackendTexture(int width,
|
|
|
|
int height,
|
|
|
|
GrPixelConfig config,
|
|
|
|
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; }
|
|
|
|
|
2017-10-12 19:44:50 +00:00
|
|
|
private:
|
2017-11-13 16:05:52 +00:00
|
|
|
// Friending for access to the GrPixelConfig
|
|
|
|
friend class SkSurface;
|
|
|
|
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:
|
|
|
|
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-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-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;
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|