2019-12-22 23:13:09 +00:00
|
|
|
/*
|
|
|
|
** BuilderNative Renderer
|
|
|
|
** Copyright (c) 2019 Magnus Norddahl
|
|
|
|
**
|
|
|
|
** This software is provided 'as-is', without any express or implied
|
|
|
|
** warranty. In no event will the authors be held liable for any damages
|
|
|
|
** arising from the use of this software.
|
|
|
|
**
|
|
|
|
** Permission is granted to anyone to use this software for any purpose,
|
|
|
|
** including commercial applications, and to alter it and redistribute it
|
|
|
|
** freely, subject to the following restrictions:
|
|
|
|
**
|
|
|
|
** 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
** claim that you wrote the original software. If you use this software
|
|
|
|
** in a product, an acknowledgment in the product documentation would be
|
|
|
|
** appreciated but is not required.
|
|
|
|
** 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
** misrepresented as being the original software.
|
|
|
|
** 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
2019-08-09 04:18:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-12-23 19:09:38 +00:00
|
|
|
#include "../Backend.h"
|
2019-12-25 23:37:47 +00:00
|
|
|
#include <list>
|
2019-08-09 04:18:08 +00:00
|
|
|
|
2019-12-23 19:09:38 +00:00
|
|
|
class GLRenderDevice;
|
2019-12-22 22:44:58 +00:00
|
|
|
|
2019-12-23 19:09:38 +00:00
|
|
|
class GLTexture : public Texture
|
2019-08-09 04:18:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-12-23 19:09:38 +00:00
|
|
|
GLTexture();
|
|
|
|
~GLTexture();
|
2019-08-09 21:15:48 +00:00
|
|
|
|
2019-12-26 00:09:31 +00:00
|
|
|
void Finalize();
|
|
|
|
|
2020-01-15 22:28:17 +00:00
|
|
|
void Set2DImage(int width, int height, PixelFormat format) override;
|
|
|
|
void SetCubeImage(int size, PixelFormat format) override;
|
2019-08-09 21:15:48 +00:00
|
|
|
|
2019-12-25 17:08:43 +00:00
|
|
|
bool SetPixels(GLRenderDevice* device, const void* data);
|
|
|
|
bool SetCubePixels(GLRenderDevice* device, CubeMapFace face, const void* data);
|
2019-08-09 21:15:48 +00:00
|
|
|
|
2019-08-14 11:51:05 +00:00
|
|
|
bool IsCubeTexture() const { return mCubeTexture; }
|
2019-08-15 00:52:21 +00:00
|
|
|
int GetWidth() const { return mWidth; }
|
|
|
|
int GetHeight() const { return mHeight; }
|
|
|
|
|
|
|
|
bool IsTextureCreated() const { return mTexture; }
|
|
|
|
void Invalidate();
|
2019-08-14 11:51:05 +00:00
|
|
|
|
2019-12-23 19:09:38 +00:00
|
|
|
GLuint GetTexture(GLRenderDevice* device);
|
|
|
|
GLuint GetFramebuffer(GLRenderDevice* device, bool usedepthbuffer);
|
|
|
|
GLuint GetPBO(GLRenderDevice* device);
|
2019-12-22 22:44:58 +00:00
|
|
|
|
2019-12-23 19:09:38 +00:00
|
|
|
GLRenderDevice* Device = nullptr;
|
2019-12-25 23:37:47 +00:00
|
|
|
std::list<GLTexture*>::iterator ItTexture;
|
2019-08-14 11:51:05 +00:00
|
|
|
|
2019-08-09 21:15:48 +00:00
|
|
|
private:
|
2020-01-15 22:28:17 +00:00
|
|
|
static GLint ToInternalFormat(PixelFormat format);
|
|
|
|
static GLenum ToDataFormat(PixelFormat format);
|
|
|
|
static GLenum ToDataType(PixelFormat format);
|
|
|
|
|
2019-08-09 21:15:48 +00:00
|
|
|
int mWidth = 0;
|
|
|
|
int mHeight = 0;
|
2020-01-15 22:28:17 +00:00
|
|
|
PixelFormat mFormat = {};
|
2019-08-09 21:15:48 +00:00
|
|
|
bool mCubeTexture = false;
|
2019-08-14 11:51:05 +00:00
|
|
|
GLuint mTexture = 0;
|
2019-08-15 00:52:21 +00:00
|
|
|
GLuint mFramebuffer = 0;
|
|
|
|
GLuint mDepthRenderbuffer = 0;
|
2019-12-16 04:54:44 +00:00
|
|
|
GLuint mPBO = 0;
|
2019-08-09 04:18:08 +00:00
|
|
|
};
|