2015-10-31 04:28:21 +00:00
|
|
|
#include "boo/graphicsdev/GL.hpp"
|
2015-11-08 00:36:38 +00:00
|
|
|
#include "boo/graphicsdev/glew.h"
|
2015-10-29 04:44:38 +00:00
|
|
|
#include "boo/IGraphicsContext.hpp"
|
|
|
|
#include <vector>
|
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
|
|
|
#include <condition_variable>
|
2015-11-30 02:37:46 +00:00
|
|
|
#include <array>
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-10-30 06:26:02 +00:00
|
|
|
#include <LogVisor/LogVisor.hpp>
|
|
|
|
|
2015-12-02 22:04:24 +00:00
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
namespace boo
|
|
|
|
{
|
2015-10-31 04:28:21 +00:00
|
|
|
static LogVisor::LogModule Log("boo::GL");
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-12-18 21:33:53 +00:00
|
|
|
ThreadLocalPtr<struct GLData> GLDataFactory::m_deferredData;
|
2015-11-02 10:07:15 +00:00
|
|
|
struct GLData : IGraphicsData
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
std::vector<std::unique_ptr<class GLShaderPipeline>> m_SPs;
|
2015-11-03 22:13:15 +00:00
|
|
|
std::vector<std::unique_ptr<struct GLShaderDataBinding>> m_SBinds;
|
2015-11-02 10:07:15 +00:00
|
|
|
std::vector<std::unique_ptr<class GLGraphicsBufferS>> m_SBufs;
|
|
|
|
std::vector<std::unique_ptr<class GLGraphicsBufferD>> m_DBufs;
|
|
|
|
std::vector<std::unique_ptr<class GLTextureS>> m_STexs;
|
2015-11-26 23:03:01 +00:00
|
|
|
std::vector<std::unique_ptr<class GLTextureSA>> m_SATexs;
|
2015-11-02 10:07:15 +00:00
|
|
|
std::vector<std::unique_ptr<class GLTextureD>> m_DTexs;
|
2015-11-04 01:02:05 +00:00
|
|
|
std::vector<std::unique_ptr<class GLTextureR>> m_RTexs;
|
2015-11-03 22:13:15 +00:00
|
|
|
std::vector<std::unique_ptr<struct GLVertexFormat>> m_VFmts;
|
2015-10-29 04:44:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const GLenum USE_TABLE[] =
|
|
|
|
{
|
|
|
|
GL_INVALID_ENUM,
|
|
|
|
GL_ARRAY_BUFFER,
|
|
|
|
GL_ELEMENT_ARRAY_BUFFER,
|
|
|
|
GL_UNIFORM_BUFFER
|
|
|
|
};
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
class GLGraphicsBufferS : public IGraphicsBufferS
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
friend class GLDataFactory;
|
|
|
|
friend struct GLCommandQueue;
|
2015-10-29 04:44:38 +00:00
|
|
|
GLuint m_buf;
|
|
|
|
GLenum m_target;
|
2015-11-02 10:07:15 +00:00
|
|
|
GLGraphicsBufferS(BufferUse use, const void* data, size_t sz)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-21 01:12:22 +00:00
|
|
|
m_target = USE_TABLE[int(use)];
|
2015-10-29 04:44:38 +00:00
|
|
|
glGenBuffers(1, &m_buf);
|
|
|
|
glBindBuffer(m_target, m_buf);
|
|
|
|
glBufferData(m_target, sz, data, GL_STATIC_DRAW);
|
|
|
|
}
|
|
|
|
public:
|
2015-11-02 10:07:15 +00:00
|
|
|
~GLGraphicsBufferS() {glDeleteBuffers(1, &m_buf);}
|
2015-10-30 00:00:56 +00:00
|
|
|
|
|
|
|
void bindVertex() const
|
|
|
|
{glBindBuffer(GL_ARRAY_BUFFER, m_buf);}
|
|
|
|
void bindIndex() const
|
|
|
|
{glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_buf);}
|
|
|
|
void bindUniform(size_t idx) const
|
|
|
|
{glBindBufferBase(GL_UNIFORM_BUFFER, idx, m_buf);}
|
2015-10-29 04:44:38 +00:00
|
|
|
};
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
class GLGraphicsBufferD : public IGraphicsBufferD
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
friend class GLDataFactory;
|
|
|
|
friend struct GLCommandQueue;
|
2015-10-30 00:00:56 +00:00
|
|
|
GLuint m_bufs[3];
|
2015-10-29 04:44:38 +00:00
|
|
|
GLenum m_target;
|
2015-12-02 21:09:49 +00:00
|
|
|
std::unique_ptr<uint8_t[]> m_cpuBuf;
|
|
|
|
size_t m_cpuSz = 0;
|
|
|
|
int m_validMask = 0;
|
2016-01-08 00:04:37 +00:00
|
|
|
GLGraphicsBufferD(BufferUse use, size_t sz)
|
|
|
|
: m_target(USE_TABLE[int(use)]), m_cpuBuf(new uint8_t[sz]), m_cpuSz(sz)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-10-30 00:00:56 +00:00
|
|
|
glGenBuffers(3, m_bufs);
|
2016-01-08 00:04:37 +00:00
|
|
|
for (int i=0 ; i<3 ; ++i)
|
|
|
|
{
|
|
|
|
glBindBuffer(m_target, m_bufs[i]);
|
|
|
|
glBufferData(m_target, m_cpuSz, nullptr, GL_STREAM_DRAW);
|
|
|
|
}
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
2015-12-02 21:09:49 +00:00
|
|
|
void update(int b);
|
2015-10-29 04:44:38 +00:00
|
|
|
public:
|
2015-11-02 10:07:15 +00:00
|
|
|
~GLGraphicsBufferD() {glDeleteBuffers(3, m_bufs);}
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
void load(const void* data, size_t sz);
|
|
|
|
void* map(size_t sz);
|
|
|
|
void unmap();
|
|
|
|
|
2015-12-02 21:09:49 +00:00
|
|
|
void bindVertex(int b);
|
|
|
|
void bindIndex(int b);
|
|
|
|
void bindUniform(size_t idx, int b);
|
2015-10-29 04:44:38 +00:00
|
|
|
};
|
|
|
|
|
2015-11-02 09:31:06 +00:00
|
|
|
IGraphicsBufferS*
|
2015-11-02 10:07:15 +00:00
|
|
|
GLDataFactory::newStaticBuffer(BufferUse use, const void* data, size_t stride, size_t count)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
GLGraphicsBufferS* retval = new GLGraphicsBufferS(use, data, stride * count);
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_SBufs.emplace_back(retval);
|
2015-10-29 04:44:38 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
class GLTextureS : public ITextureS
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
friend class GLDataFactory;
|
2015-10-29 04:44:38 +00:00
|
|
|
GLuint m_tex;
|
2015-11-02 10:07:15 +00:00
|
|
|
GLTextureS(size_t width, size_t height, size_t mips,
|
2015-11-21 01:12:22 +00:00
|
|
|
TextureFormat fmt, const void* data, size_t sz)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
|
|
|
const uint8_t* dataIt = static_cast<const uint8_t*>(data);
|
|
|
|
glGenTextures(1, &m_tex);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_tex);
|
2015-11-01 00:06:56 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
if (mips > 1)
|
2016-02-16 19:41:16 +00:00
|
|
|
{
|
2015-11-01 00:06:56 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
|
2016-02-16 19:41:16 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, mips-1);
|
|
|
|
}
|
2015-11-01 00:06:56 +00:00
|
|
|
else
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
2015-12-02 21:09:49 +00:00
|
|
|
|
|
|
|
GLenum intFormat, format;
|
|
|
|
int pxPitch;
|
2016-02-16 05:47:09 +00:00
|
|
|
bool compressed = false;
|
2015-12-02 21:09:49 +00:00
|
|
|
switch (fmt)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-12-02 21:09:49 +00:00
|
|
|
case TextureFormat::RGBA8:
|
|
|
|
intFormat = GL_RGBA;
|
|
|
|
format = GL_RGBA;
|
|
|
|
pxPitch = 4;
|
|
|
|
break;
|
|
|
|
case TextureFormat::I8:
|
|
|
|
intFormat = GL_R8;
|
|
|
|
format = GL_RED;
|
|
|
|
pxPitch = 1;
|
|
|
|
break;
|
2016-02-16 05:47:09 +00:00
|
|
|
case TextureFormat::DXT1:
|
2016-02-16 19:41:16 +00:00
|
|
|
intFormat = GL_COMPRESSED_RGBA_S3TC_DXT1_EXT;
|
2016-02-16 05:47:09 +00:00
|
|
|
compressed = true;
|
|
|
|
break;
|
2015-12-02 21:09:49 +00:00
|
|
|
default:
|
|
|
|
Log.report(LogVisor::FatalError, "unsupported tex format");
|
|
|
|
}
|
|
|
|
|
2016-02-16 05:47:09 +00:00
|
|
|
if (compressed)
|
2015-12-02 21:09:49 +00:00
|
|
|
{
|
2016-02-16 05:47:09 +00:00
|
|
|
for (size_t i=0 ; i<mips ; ++i)
|
|
|
|
{
|
|
|
|
size_t dataSz = width * height / 2;
|
|
|
|
glCompressedTexImage2D(GL_TEXTURE_2D, i, intFormat, width, height, 0, dataSz, dataIt);
|
|
|
|
dataIt += dataSz;
|
|
|
|
width /= 2;
|
|
|
|
height /= 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (size_t i=0 ; i<mips ; ++i)
|
|
|
|
{
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, i, intFormat, width, height, 0, format, GL_UNSIGNED_BYTE, dataIt);
|
|
|
|
dataIt += width * height * pxPitch;
|
|
|
|
width /= 2;
|
|
|
|
height /= 2;
|
|
|
|
}
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
public:
|
2015-11-02 10:07:15 +00:00
|
|
|
~GLTextureS() {glDeleteTextures(1, &m_tex);}
|
2015-10-30 00:00:56 +00:00
|
|
|
|
|
|
|
void bind(size_t idx) const
|
|
|
|
{
|
|
|
|
glActiveTexture(GL_TEXTURE0 + idx);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_tex);
|
|
|
|
}
|
2015-10-29 04:44:38 +00:00
|
|
|
};
|
|
|
|
|
2015-11-26 23:03:01 +00:00
|
|
|
class GLTextureSA : public ITextureSA
|
2015-11-23 08:49:53 +00:00
|
|
|
{
|
|
|
|
friend class GLDataFactory;
|
|
|
|
GLuint m_tex;
|
2015-11-26 23:03:01 +00:00
|
|
|
GLTextureSA(size_t width, size_t height, size_t layers,
|
|
|
|
TextureFormat fmt, const void* data, size_t sz)
|
2015-11-23 08:49:53 +00:00
|
|
|
{
|
|
|
|
glGenTextures(1, &m_tex);
|
|
|
|
glBindTexture(GL_TEXTURE_2D_ARRAY, m_tex);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
if (fmt == TextureFormat::RGBA8)
|
|
|
|
glTexImage3D(GL_TEXTURE_2D_ARRAY, 0, GL_RGBA, width, height, layers, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
|
|
|
|
else if (fmt == TextureFormat::I8)
|
|
|
|
glTexImage3D(GL_TEXTURE_2D_ARRAY, 0, GL_R8, width, height, layers, 0, GL_RED, GL_UNSIGNED_BYTE, data);
|
|
|
|
}
|
|
|
|
public:
|
2015-11-26 23:03:01 +00:00
|
|
|
~GLTextureSA() {glDeleteTextures(1, &m_tex);}
|
2015-11-23 08:49:53 +00:00
|
|
|
|
|
|
|
void bind(size_t idx) const
|
|
|
|
{
|
|
|
|
glActiveTexture(GL_TEXTURE0 + idx);
|
|
|
|
glBindTexture(GL_TEXTURE_2D_ARRAY, m_tex);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
class GLTextureD : public ITextureD
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
friend class GLDataFactory;
|
|
|
|
friend struct GLCommandQueue;
|
2015-11-04 01:02:05 +00:00
|
|
|
GLuint m_texs[3];
|
2015-12-02 21:09:49 +00:00
|
|
|
std::unique_ptr<uint8_t[]> m_cpuBuf;
|
|
|
|
size_t m_cpuSz = 0;
|
|
|
|
GLenum m_intFormat, m_format;
|
2015-10-29 04:44:38 +00:00
|
|
|
size_t m_width = 0;
|
|
|
|
size_t m_height = 0;
|
2015-12-02 21:09:49 +00:00
|
|
|
int m_validMask = 0;
|
2016-01-08 00:04:37 +00:00
|
|
|
GLTextureD(size_t width, size_t height, TextureFormat fmt);
|
2015-12-02 21:09:49 +00:00
|
|
|
void update(int b);
|
2015-10-29 04:44:38 +00:00
|
|
|
public:
|
2015-11-02 10:07:15 +00:00
|
|
|
~GLTextureD();
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-11-04 01:02:05 +00:00
|
|
|
void load(const void* data, size_t sz);
|
|
|
|
void* map(size_t sz);
|
|
|
|
void unmap();
|
|
|
|
|
2015-12-02 21:09:49 +00:00
|
|
|
void bind(size_t idx, int b);
|
2015-11-04 01:02:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class GLTextureR : public ITextureR
|
|
|
|
{
|
|
|
|
friend class GLDataFactory;
|
|
|
|
friend struct GLCommandQueue;
|
|
|
|
struct GLCommandQueue* m_q;
|
|
|
|
GLuint m_texs[2];
|
2016-02-25 02:53:23 +00:00
|
|
|
GLuint m_bindTexs[2] = {};
|
2015-11-04 01:02:05 +00:00
|
|
|
GLuint m_fbo = 0;
|
|
|
|
size_t m_width = 0;
|
|
|
|
size_t m_height = 0;
|
|
|
|
size_t m_samples = 0;
|
2016-01-08 00:04:37 +00:00
|
|
|
GLenum m_target;
|
2016-02-25 02:53:23 +00:00
|
|
|
GLTextureR(GLCommandQueue* q, size_t width, size_t height, size_t samples,
|
|
|
|
bool enableShaderColorBinding, bool enableShaderDepthBinding);
|
2015-11-04 01:02:05 +00:00
|
|
|
public:
|
|
|
|
~GLTextureR();
|
2015-10-30 00:00:56 +00:00
|
|
|
|
|
|
|
void bind(size_t idx) const
|
|
|
|
{
|
|
|
|
glActiveTexture(GL_TEXTURE0 + idx);
|
2016-02-25 02:53:23 +00:00
|
|
|
glBindTexture(m_target, m_bindTexs[0]);
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-04 01:58:36 +00:00
|
|
|
void resize(size_t width, size_t height)
|
|
|
|
{
|
|
|
|
m_width = width;
|
|
|
|
m_height = height;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2016-01-08 00:04:37 +00:00
|
|
|
if (m_samples > 1)
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, m_texs[0]);
|
|
|
|
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, m_samples, GL_RGBA, width, height, GL_FALSE);
|
|
|
|
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, m_texs[1]);
|
|
|
|
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, m_samples, GL_DEPTH_COMPONENT24, width, height, GL_FALSE);
|
2016-02-25 02:53:23 +00:00
|
|
|
|
|
|
|
if (m_bindTexs[0])
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, m_bindTexs[0]);
|
|
|
|
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, m_samples, GL_RGBA, width, height, GL_FALSE);
|
|
|
|
}
|
|
|
|
if (m_bindTexs[1])
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, m_bindTexs[1]);
|
|
|
|
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, m_samples, GL_DEPTH_COMPONENT24, width, height, GL_FALSE);
|
|
|
|
}
|
2016-01-08 00:04:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[0]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[1]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, width, height, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr);
|
2016-02-25 02:53:23 +00:00
|
|
|
|
|
|
|
if (m_bindTexs[0])
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_bindTexs[0]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
|
|
|
}
|
|
|
|
if (m_bindTexs[1])
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_bindTexs[1]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, width, height, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr);
|
|
|
|
}
|
2016-01-08 00:04:37 +00:00
|
|
|
}
|
2015-11-04 01:58:36 +00:00
|
|
|
}
|
2015-10-29 04:44:38 +00:00
|
|
|
};
|
|
|
|
|
2015-11-02 09:31:06 +00:00
|
|
|
ITextureS*
|
2015-11-02 10:07:15 +00:00
|
|
|
GLDataFactory::newStaticTexture(size_t width, size_t height, size_t mips, TextureFormat fmt,
|
2015-10-30 06:26:02 +00:00
|
|
|
const void* data, size_t sz)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
GLTextureS* retval = new GLTextureS(width, height, mips, fmt, data, sz);
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_STexs.emplace_back(retval);
|
2015-10-29 04:44:38 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2016-02-16 05:47:09 +00:00
|
|
|
GraphicsDataToken
|
|
|
|
GLDataFactory::newStaticTextureNoContext(size_t width, size_t height, size_t mips, TextureFormat fmt,
|
2016-02-21 06:27:54 +00:00
|
|
|
const void* data, size_t sz, ITextureS*& texOut)
|
2015-11-07 01:43:12 +00:00
|
|
|
{
|
2016-02-16 05:47:09 +00:00
|
|
|
GLTextureS* retval = new GLTextureS(width, height, mips, fmt, data, sz);
|
|
|
|
GLData* tokData = new struct GLData();
|
|
|
|
tokData->m_STexs.emplace_back(retval);
|
2016-02-21 06:27:54 +00:00
|
|
|
texOut = retval;
|
2016-02-16 05:47:09 +00:00
|
|
|
|
|
|
|
std::unique_lock<std::mutex> lk(m_committedMutex);
|
|
|
|
m_committedData.insert(tokData);
|
|
|
|
lk.unlock();
|
|
|
|
/* Let's go ahead and flush to ensure our data gets to the GPU
|
|
|
|
While this isn't strictly required, some drivers might behave
|
|
|
|
differently */
|
|
|
|
glFlush();
|
|
|
|
return GraphicsDataToken(this, tokData);
|
2015-11-07 01:43:12 +00:00
|
|
|
}
|
|
|
|
|
2015-11-26 23:03:01 +00:00
|
|
|
ITextureSA*
|
2015-11-23 08:49:53 +00:00
|
|
|
GLDataFactory::newStaticArrayTexture(size_t width, size_t height, size_t layers, TextureFormat fmt,
|
|
|
|
const void *data, size_t sz)
|
|
|
|
{
|
2015-11-26 23:03:01 +00:00
|
|
|
GLTextureSA* retval = new GLTextureSA(width, height, layers, fmt, data, sz);
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_SATexs.emplace_back(retval);
|
2015-11-23 08:49:53 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
class GLShaderPipeline : public IShaderPipeline
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
friend class GLDataFactory;
|
2015-11-16 04:29:31 +00:00
|
|
|
friend struct GLShaderDataBinding;
|
2015-10-29 04:44:38 +00:00
|
|
|
GLuint m_vert = 0;
|
|
|
|
GLuint m_frag = 0;
|
|
|
|
GLuint m_prog = 0;
|
|
|
|
GLenum m_sfactor = GL_ONE;
|
|
|
|
GLenum m_dfactor = GL_ZERO;
|
2015-10-30 00:00:56 +00:00
|
|
|
bool m_depthTest = true;
|
|
|
|
bool m_depthWrite = true;
|
|
|
|
bool m_backfaceCulling = true;
|
2015-11-16 04:29:31 +00:00
|
|
|
std::vector<GLint> m_uniLocs;
|
2015-10-29 04:44:38 +00:00
|
|
|
bool initObjects()
|
|
|
|
{
|
|
|
|
m_vert = glCreateShader(GL_VERTEX_SHADER);
|
|
|
|
m_frag = glCreateShader(GL_FRAGMENT_SHADER);
|
|
|
|
m_prog = glCreateProgram();
|
|
|
|
if (!m_vert || !m_frag || !m_prog)
|
|
|
|
{
|
|
|
|
glDeleteShader(m_vert);
|
|
|
|
m_vert = 0;
|
|
|
|
glDeleteShader(m_frag);
|
|
|
|
m_frag = 0;
|
|
|
|
glDeleteProgram(m_prog);
|
|
|
|
m_prog = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
glAttachShader(m_prog, m_vert);
|
|
|
|
glAttachShader(m_prog, m_frag);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
void clearObjects()
|
|
|
|
{
|
|
|
|
if (m_vert)
|
|
|
|
glDeleteShader(m_vert);
|
|
|
|
if (m_frag)
|
|
|
|
glDeleteShader(m_frag);
|
|
|
|
if (m_prog)
|
|
|
|
glDeleteProgram(m_prog);
|
|
|
|
}
|
2015-11-02 10:07:15 +00:00
|
|
|
GLShaderPipeline() = default;
|
2015-10-29 04:44:38 +00:00
|
|
|
public:
|
|
|
|
operator bool() const {return m_prog != 0;}
|
2015-11-02 10:07:15 +00:00
|
|
|
~GLShaderPipeline() {clearObjects();}
|
|
|
|
GLShaderPipeline& operator=(const GLShaderPipeline&) = delete;
|
|
|
|
GLShaderPipeline(const GLShaderPipeline&) = delete;
|
|
|
|
GLShaderPipeline& operator=(GLShaderPipeline&& other)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
|
|
|
m_vert = other.m_vert;
|
|
|
|
other.m_vert = 0;
|
|
|
|
m_frag = other.m_frag;
|
|
|
|
other.m_frag = 0;
|
|
|
|
m_prog = other.m_prog;
|
|
|
|
other.m_prog = 0;
|
2015-11-16 20:43:27 +00:00
|
|
|
m_sfactor = other.m_sfactor;
|
|
|
|
m_dfactor = other.m_dfactor;
|
|
|
|
m_depthTest = other.m_depthTest;
|
|
|
|
m_depthWrite = other.m_depthWrite;
|
|
|
|
m_backfaceCulling = other.m_backfaceCulling;
|
|
|
|
m_uniLocs = std::move(other.m_uniLocs);
|
2015-10-29 04:44:38 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2015-11-02 10:07:15 +00:00
|
|
|
GLShaderPipeline(GLShaderPipeline&& other) {*this = std::move(other);}
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
GLuint bind() const
|
|
|
|
{
|
|
|
|
glUseProgram(m_prog);
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
if (m_dfactor != GL_ZERO)
|
|
|
|
{
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(m_sfactor, m_dfactor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
glDisable(GL_BLEND);
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
if (m_depthTest)
|
|
|
|
glEnable(GL_DEPTH_TEST);
|
|
|
|
else
|
|
|
|
glDisable(GL_DEPTH_TEST);
|
|
|
|
glDepthMask(m_depthWrite);
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-11-03 22:15:37 +00:00
|
|
|
if (m_backfaceCulling)
|
|
|
|
glEnable(GL_CULL_FACE);
|
|
|
|
else
|
2015-10-30 00:00:56 +00:00
|
|
|
glDisable(GL_CULL_FACE);
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
return m_prog;
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
2015-10-30 00:00:56 +00:00
|
|
|
};
|
2015-10-29 04:44:38 +00:00
|
|
|
|
|
|
|
static const GLenum BLEND_FACTOR_TABLE[] =
|
|
|
|
{
|
|
|
|
GL_ZERO,
|
|
|
|
GL_ONE,
|
|
|
|
GL_SRC_COLOR,
|
|
|
|
GL_ONE_MINUS_SRC_COLOR,
|
|
|
|
GL_DST_COLOR,
|
|
|
|
GL_ONE_MINUS_DST_COLOR,
|
|
|
|
GL_SRC_ALPHA,
|
|
|
|
GL_ONE_MINUS_SRC_ALPHA,
|
|
|
|
GL_DST_ALPHA,
|
2015-11-25 02:14:30 +00:00
|
|
|
GL_ONE_MINUS_DST_ALPHA,
|
|
|
|
GL_SRC1_COLOR,
|
|
|
|
GL_ONE_MINUS_SRC1_COLOR
|
2015-10-29 04:44:38 +00:00
|
|
|
};
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
IShaderPipeline* GLDataFactory::newShaderPipeline
|
2015-10-29 04:44:38 +00:00
|
|
|
(const char* vertSource, const char* fragSource,
|
2015-11-16 04:29:31 +00:00
|
|
|
size_t texCount, const char* texArrayName,
|
|
|
|
size_t uniformBlockCount, const char** uniformBlockNames,
|
2015-10-29 04:44:38 +00:00
|
|
|
BlendFactor srcFac, BlendFactor dstFac,
|
|
|
|
bool depthTest, bool depthWrite, bool backfaceCulling)
|
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
GLShaderPipeline shader;
|
2015-10-29 04:44:38 +00:00
|
|
|
if (!shader.initObjects())
|
|
|
|
{
|
2015-10-30 06:26:02 +00:00
|
|
|
Log.report(LogVisor::Error, "unable to create shader objects\n");
|
2015-10-29 04:44:38 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2015-11-21 01:12:22 +00:00
|
|
|
shader.m_sfactor = BLEND_FACTOR_TABLE[int(srcFac)];
|
|
|
|
shader.m_dfactor = BLEND_FACTOR_TABLE[int(dstFac)];
|
2015-10-30 00:00:56 +00:00
|
|
|
shader.m_depthTest = depthTest;
|
|
|
|
shader.m_depthWrite = depthWrite;
|
|
|
|
shader.m_backfaceCulling = backfaceCulling;
|
2015-10-29 04:44:38 +00:00
|
|
|
|
|
|
|
glShaderSource(shader.m_vert, 1, &vertSource, nullptr);
|
|
|
|
glCompileShader(shader.m_vert);
|
|
|
|
GLint status;
|
|
|
|
glGetShaderiv(shader.m_vert, GL_COMPILE_STATUS, &status);
|
|
|
|
if (status != GL_TRUE)
|
|
|
|
{
|
|
|
|
GLint logLen;
|
|
|
|
glGetShaderiv(shader.m_vert, GL_INFO_LOG_LENGTH, &logLen);
|
|
|
|
char* log = (char*)malloc(logLen);
|
|
|
|
glGetShaderInfoLog(shader.m_vert, logLen, nullptr, log);
|
2015-10-30 06:26:02 +00:00
|
|
|
Log.report(LogVisor::Error, "unable to compile vert source\n%s\n%s\n", log, vertSource);
|
2015-10-29 04:44:38 +00:00
|
|
|
free(log);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
glShaderSource(shader.m_frag, 1, &fragSource, nullptr);
|
|
|
|
glCompileShader(shader.m_frag);
|
|
|
|
glGetShaderiv(shader.m_frag, GL_COMPILE_STATUS, &status);
|
|
|
|
if (status != GL_TRUE)
|
|
|
|
{
|
|
|
|
GLint logLen;
|
|
|
|
glGetShaderiv(shader.m_frag, GL_INFO_LOG_LENGTH, &logLen);
|
|
|
|
char* log = (char*)malloc(logLen);
|
|
|
|
glGetShaderInfoLog(shader.m_frag, logLen, nullptr, log);
|
2015-10-30 06:26:02 +00:00
|
|
|
Log.report(LogVisor::Error, "unable to compile frag source\n%s\n%s\n", log, fragSource);
|
2015-10-29 04:44:38 +00:00
|
|
|
free(log);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
glLinkProgram(shader.m_prog);
|
|
|
|
glGetProgramiv(shader.m_prog, GL_LINK_STATUS, &status);
|
|
|
|
if (status != GL_TRUE)
|
|
|
|
{
|
|
|
|
GLint logLen;
|
|
|
|
glGetProgramiv(shader.m_prog, GL_INFO_LOG_LENGTH, &logLen);
|
|
|
|
char* log = (char*)malloc(logLen);
|
|
|
|
glGetProgramInfoLog(shader.m_prog, logLen, nullptr, log);
|
2015-10-30 06:26:02 +00:00
|
|
|
Log.report(LogVisor::Error, "unable to link shader program\n%s\n", log);
|
2015-10-29 04:44:38 +00:00
|
|
|
free(log);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-10-31 04:28:21 +00:00
|
|
|
glUseProgram(shader.m_prog);
|
2015-11-16 04:29:31 +00:00
|
|
|
|
|
|
|
if (uniformBlockCount)
|
2015-10-31 04:28:21 +00:00
|
|
|
{
|
2015-11-16 04:29:31 +00:00
|
|
|
shader.m_uniLocs.reserve(uniformBlockCount);
|
|
|
|
for (size_t i=0 ; i<uniformBlockCount ; ++i)
|
|
|
|
{
|
|
|
|
GLint uniLoc = glGetUniformBlockIndex(shader.m_prog, uniformBlockNames[i]);
|
|
|
|
if (uniLoc < 0)
|
2016-02-16 05:47:09 +00:00
|
|
|
Log.report(LogVisor::Error, "unable to find uniform block '%s'", uniformBlockNames[i]);
|
2015-11-16 04:29:31 +00:00
|
|
|
shader.m_uniLocs.push_back(uniLoc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (texCount && texArrayName)
|
|
|
|
{
|
|
|
|
GLint texLoc = glGetUniformLocation(shader.m_prog, texArrayName);
|
|
|
|
if (texLoc < 0)
|
2016-02-16 05:47:09 +00:00
|
|
|
Log.report(LogVisor::Error, "unable to find sampler variable '%s'", texArrayName);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (texCount > m_texUnis.size())
|
|
|
|
for (size_t i=m_texUnis.size() ; i<texCount ; ++i)
|
|
|
|
m_texUnis.push_back(i);
|
|
|
|
glUniform1iv(texLoc, m_texUnis.size(), m_texUnis.data());
|
|
|
|
}
|
2015-10-31 04:28:21 +00:00
|
|
|
}
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
GLShaderPipeline* retval = new GLShaderPipeline(std::move(shader));
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_SPs.emplace_back(retval);
|
2015-10-29 04:44:38 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-11-03 22:13:15 +00:00
|
|
|
struct GLVertexFormat : IVertexFormat
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
GLCommandQueue* m_q;
|
2015-11-30 02:37:46 +00:00
|
|
|
GLuint m_vao[3] = {};
|
2015-10-30 00:00:56 +00:00
|
|
|
size_t m_elementCount;
|
2015-10-30 06:26:02 +00:00
|
|
|
std::unique_ptr<VertexElementDescriptor[]> m_elements;
|
2015-11-03 22:13:15 +00:00
|
|
|
GLVertexFormat(GLCommandQueue* q, size_t elementCount,
|
2015-11-30 02:37:46 +00:00
|
|
|
const VertexElementDescriptor* elements);
|
2015-11-03 22:13:15 +00:00
|
|
|
~GLVertexFormat();
|
2015-11-30 02:37:46 +00:00
|
|
|
void bind(int idx) const {glBindVertexArray(m_vao[idx]);}
|
2015-10-30 00:00:56 +00:00
|
|
|
};
|
|
|
|
|
2015-11-03 22:13:15 +00:00
|
|
|
struct GLShaderDataBinding : IShaderDataBinding
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
const GLShaderPipeline* m_pipeline;
|
2015-11-03 22:13:15 +00:00
|
|
|
const GLVertexFormat* m_vtxFormat;
|
2015-10-30 00:00:56 +00:00
|
|
|
size_t m_ubufCount;
|
2015-11-02 09:31:06 +00:00
|
|
|
std::unique_ptr<IGraphicsBuffer*[]> m_ubufs;
|
2015-10-30 00:00:56 +00:00
|
|
|
size_t m_texCount;
|
2015-11-02 09:31:06 +00:00
|
|
|
std::unique_ptr<ITexture*[]> m_texs;
|
2015-12-17 21:29:47 +00:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
/* Debugging aids */
|
|
|
|
bool m_committed = false;
|
|
|
|
#endif
|
|
|
|
|
2015-11-03 22:13:15 +00:00
|
|
|
GLShaderDataBinding(IShaderPipeline* pipeline,
|
2015-11-16 04:29:31 +00:00
|
|
|
IVertexFormat* vtxFormat,
|
|
|
|
size_t ubufCount, IGraphicsBuffer** ubufs,
|
|
|
|
size_t texCount, ITexture** texs)
|
2015-11-02 10:07:15 +00:00
|
|
|
: m_pipeline(static_cast<GLShaderPipeline*>(pipeline)),
|
2015-11-03 22:13:15 +00:00
|
|
|
m_vtxFormat(static_cast<GLVertexFormat*>(vtxFormat)),
|
2015-10-30 00:00:56 +00:00
|
|
|
m_ubufCount(ubufCount),
|
2015-11-02 09:31:06 +00:00
|
|
|
m_ubufs(new IGraphicsBuffer*[ubufCount]),
|
2015-10-30 00:00:56 +00:00
|
|
|
m_texCount(texCount),
|
2015-11-02 09:31:06 +00:00
|
|
|
m_texs(new ITexture*[texCount])
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
|
|
|
for (size_t i=0 ; i<ubufCount ; ++i)
|
|
|
|
m_ubufs[i] = ubufs[i];
|
|
|
|
for (size_t i=0 ; i<texCount ; ++i)
|
|
|
|
m_texs[i] = texs[i];
|
|
|
|
}
|
2015-11-30 02:37:46 +00:00
|
|
|
void bind(int b) const
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-12-17 21:29:47 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
if (!m_committed)
|
|
|
|
Log.report(LogVisor::FatalError,
|
|
|
|
"attempted to use uncommitted GLShaderDataBinding");
|
|
|
|
#endif
|
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
GLuint prog = m_pipeline->bind();
|
2015-11-30 02:37:46 +00:00
|
|
|
m_vtxFormat->bind(b);
|
2015-10-30 00:00:56 +00:00
|
|
|
for (size_t i=0 ; i<m_ubufCount ; ++i)
|
|
|
|
{
|
2015-11-16 20:43:27 +00:00
|
|
|
IGraphicsBuffer* ubuf = m_ubufs[i];
|
|
|
|
if (ubuf->dynamic())
|
2015-11-30 02:37:46 +00:00
|
|
|
static_cast<GLGraphicsBufferD*>(ubuf)->bindUniform(i, b);
|
2015-11-02 09:31:06 +00:00
|
|
|
else
|
2015-11-16 20:43:27 +00:00
|
|
|
static_cast<GLGraphicsBufferS*>(ubuf)->bindUniform(i);
|
2015-11-16 04:29:31 +00:00
|
|
|
glUniformBlockBinding(prog, m_pipeline->m_uniLocs.at(i), i);
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
|
|
|
for (size_t i=0 ; i<m_texCount ; ++i)
|
2015-11-02 09:31:06 +00:00
|
|
|
{
|
2015-11-16 20:43:27 +00:00
|
|
|
ITexture* tex = m_texs[i];
|
2015-11-26 23:03:01 +00:00
|
|
|
switch (tex->type())
|
|
|
|
{
|
|
|
|
case TextureType::Dynamic:
|
2015-12-02 21:09:49 +00:00
|
|
|
static_cast<GLTextureD*>(tex)->bind(i, b);
|
2015-11-26 23:03:01 +00:00
|
|
|
break;
|
|
|
|
case TextureType::Static:
|
2015-11-16 20:43:27 +00:00
|
|
|
static_cast<GLTextureS*>(tex)->bind(i);
|
2015-11-26 23:03:01 +00:00
|
|
|
break;
|
|
|
|
case TextureType::StaticArray:
|
|
|
|
static_cast<GLTextureSA*>(tex)->bind(i);
|
|
|
|
break;
|
2016-02-25 02:53:23 +00:00
|
|
|
case TextureType::Render:
|
|
|
|
static_cast<GLTextureR*>(tex)->bind(i);
|
|
|
|
break;
|
2015-11-26 23:03:01 +00:00
|
|
|
default: break;
|
|
|
|
}
|
2015-11-02 09:31:06 +00:00
|
|
|
}
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-11-02 09:31:06 +00:00
|
|
|
IShaderDataBinding*
|
2015-11-02 10:07:15 +00:00
|
|
|
GLDataFactory::newShaderDataBinding(IShaderPipeline* pipeline,
|
2015-12-02 21:09:49 +00:00
|
|
|
IVertexFormat* vtxFormat,
|
|
|
|
IGraphicsBuffer*, IGraphicsBuffer*, IGraphicsBuffer*,
|
|
|
|
size_t ubufCount, IGraphicsBuffer** ubufs,
|
|
|
|
size_t texCount, ITexture** texs)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-03 22:13:15 +00:00
|
|
|
GLShaderDataBinding* retval =
|
|
|
|
new GLShaderDataBinding(pipeline, vtxFormat, ubufCount, ubufs, texCount, texs);
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_SBinds.emplace_back(retval);
|
2015-10-30 00:00:56 +00:00
|
|
|
return retval;
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
|
|
|
|
2016-02-24 03:11:58 +00:00
|
|
|
GLDataFactory::GLDataFactory(IGraphicsContext* parent, uint32_t drawSamples)
|
|
|
|
: m_parent(parent), m_drawSamples(drawSamples) {}
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
void GLDataFactory::reset()
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-12-18 21:33:53 +00:00
|
|
|
delete m_deferredData.get();
|
|
|
|
m_deferredData.reset();
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
|
|
|
|
2015-12-18 03:25:23 +00:00
|
|
|
GraphicsDataToken GLDataFactory::commit()
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
2015-12-18 03:25:23 +00:00
|
|
|
return GraphicsDataToken(this, nullptr);
|
2015-12-14 04:54:57 +00:00
|
|
|
std::unique_lock<std::mutex> lk(m_committedMutex);
|
2015-12-18 21:33:53 +00:00
|
|
|
GLData* retval = m_deferredData.get();
|
2015-12-17 22:10:14 +00:00
|
|
|
#ifndef NDEBUG
|
2015-12-17 21:29:47 +00:00
|
|
|
for (std::unique_ptr<GLShaderDataBinding>& b : retval->m_SBinds)
|
|
|
|
b->m_committed = true;
|
2015-12-17 22:10:14 +00:00
|
|
|
#endif
|
2015-12-18 21:33:53 +00:00
|
|
|
m_deferredData.reset();
|
2015-11-01 00:06:56 +00:00
|
|
|
m_committedData.insert(retval);
|
2016-02-16 05:47:09 +00:00
|
|
|
lk.unlock();
|
2015-11-03 22:13:15 +00:00
|
|
|
/* Let's go ahead and flush to ensure our data gets to the GPU
|
|
|
|
While this isn't strictly required, some drivers might behave
|
|
|
|
differently */
|
|
|
|
glFlush();
|
2015-12-18 03:25:23 +00:00
|
|
|
return GraphicsDataToken(this, retval);
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
2015-12-14 04:54:57 +00:00
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
void GLDataFactory::destroyData(IGraphicsData* d)
|
2015-11-01 00:06:56 +00:00
|
|
|
{
|
2015-12-14 04:54:57 +00:00
|
|
|
std::unique_lock<std::mutex> lk(m_committedMutex);
|
2015-11-02 10:07:15 +00:00
|
|
|
GLData* data = static_cast<GLData*>(d);
|
2015-11-01 00:06:56 +00:00
|
|
|
m_committedData.erase(data);
|
|
|
|
delete data;
|
|
|
|
}
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
void GLDataFactory::destroyAllData()
|
2015-11-01 00:06:56 +00:00
|
|
|
{
|
2015-12-14 04:54:57 +00:00
|
|
|
std::unique_lock<std::mutex> lk(m_committedMutex);
|
2015-11-01 00:06:56 +00:00
|
|
|
for (IGraphicsData* data : m_committedData)
|
2015-11-02 10:07:15 +00:00
|
|
|
delete static_cast<GLData*>(data);
|
2015-11-01 00:06:56 +00:00
|
|
|
m_committedData.clear();
|
|
|
|
}
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
static const GLint SEMANTIC_COUNT_TABLE[] =
|
|
|
|
{
|
2015-11-25 02:14:30 +00:00
|
|
|
0,
|
2015-10-30 00:00:56 +00:00
|
|
|
3,
|
2015-11-26 00:22:05 +00:00
|
|
|
4,
|
2015-10-30 00:00:56 +00:00
|
|
|
3,
|
|
|
|
4,
|
2015-11-26 00:22:05 +00:00
|
|
|
4,
|
|
|
|
4,
|
2015-10-30 00:00:56 +00:00
|
|
|
2,
|
2015-11-25 02:14:30 +00:00
|
|
|
4,
|
2015-11-26 00:22:05 +00:00
|
|
|
4,
|
2015-10-30 00:00:56 +00:00
|
|
|
4
|
|
|
|
};
|
|
|
|
|
|
|
|
static const size_t SEMANTIC_SIZE_TABLE[] =
|
|
|
|
{
|
2015-11-25 02:14:30 +00:00
|
|
|
0,
|
2015-10-30 00:00:56 +00:00
|
|
|
12,
|
2015-11-26 00:22:05 +00:00
|
|
|
16,
|
2015-10-30 00:00:56 +00:00
|
|
|
12,
|
2015-11-26 00:22:05 +00:00
|
|
|
16,
|
|
|
|
16,
|
2015-10-30 00:00:56 +00:00
|
|
|
4,
|
|
|
|
8,
|
2015-11-25 02:14:30 +00:00
|
|
|
16,
|
2015-11-26 00:22:05 +00:00
|
|
|
16,
|
2015-10-30 00:00:56 +00:00
|
|
|
16
|
|
|
|
};
|
|
|
|
|
|
|
|
static const GLenum SEMANTIC_TYPE_TABLE[] =
|
|
|
|
{
|
2015-11-25 02:14:30 +00:00
|
|
|
GL_INVALID_ENUM,
|
2015-10-30 00:00:56 +00:00
|
|
|
GL_FLOAT,
|
|
|
|
GL_FLOAT,
|
2015-11-26 00:22:05 +00:00
|
|
|
GL_FLOAT,
|
|
|
|
GL_FLOAT,
|
|
|
|
GL_FLOAT,
|
2015-10-30 00:00:56 +00:00
|
|
|
GL_UNSIGNED_BYTE,
|
|
|
|
GL_FLOAT,
|
2015-11-25 02:14:30 +00:00
|
|
|
GL_FLOAT,
|
2015-11-26 00:22:05 +00:00
|
|
|
GL_FLOAT,
|
2015-10-30 00:00:56 +00:00
|
|
|
GL_FLOAT
|
|
|
|
};
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
struct GLCommandQueue : IGraphicsCommandQueue
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-21 01:12:22 +00:00
|
|
|
Platform platform() const {return IGraphicsDataFactory::Platform::OGL;}
|
2015-11-18 06:14:49 +00:00
|
|
|
const SystemChar* platformName() const {return _S("OGL");}
|
2015-10-30 00:00:56 +00:00
|
|
|
IGraphicsContext* m_parent = nullptr;
|
2015-10-29 04:44:38 +00:00
|
|
|
|
|
|
|
struct Command
|
|
|
|
{
|
2015-11-21 01:12:22 +00:00
|
|
|
enum class Op
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-21 01:12:22 +00:00
|
|
|
SetShaderDataBinding,
|
|
|
|
SetRenderTarget,
|
|
|
|
SetViewport,
|
2015-11-26 00:22:05 +00:00
|
|
|
SetScissor,
|
2015-11-21 01:12:22 +00:00
|
|
|
SetClearColor,
|
|
|
|
ClearTarget,
|
|
|
|
Draw,
|
|
|
|
DrawIndexed,
|
|
|
|
DrawInstances,
|
|
|
|
DrawInstancesIndexed,
|
2016-02-25 02:53:23 +00:00
|
|
|
ResolveBindTexture,
|
2015-11-21 01:12:22 +00:00
|
|
|
Present
|
2015-10-29 04:44:38 +00:00
|
|
|
} m_op;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
const IShaderDataBinding* binding;
|
2015-11-04 01:02:05 +00:00
|
|
|
const ITextureR* target;
|
|
|
|
const ITextureR* source;
|
2015-11-03 04:27:56 +00:00
|
|
|
SWindowRect rect;
|
2015-10-29 04:44:38 +00:00
|
|
|
float rgba[4];
|
|
|
|
GLbitfield flags;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
size_t start;
|
|
|
|
size_t count;
|
|
|
|
size_t instCount;
|
|
|
|
};
|
|
|
|
};
|
2016-02-25 02:53:23 +00:00
|
|
|
const ITextureR* resolveTex;
|
2016-02-25 05:06:13 +00:00
|
|
|
bool resolveColor : 1;
|
|
|
|
bool resolveDepth : 1;
|
2015-10-29 04:44:38 +00:00
|
|
|
Command(Op op) : m_op(op) {}
|
|
|
|
};
|
|
|
|
std::vector<Command> m_cmdBufs[3];
|
|
|
|
size_t m_fillBuf = 0;
|
|
|
|
size_t m_completeBuf = 0;
|
|
|
|
size_t m_drawBuf = 0;
|
|
|
|
bool m_running = true;
|
2015-10-31 04:28:21 +00:00
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
std::mutex m_mt;
|
|
|
|
std::condition_variable m_cv;
|
2015-10-31 06:33:36 +00:00
|
|
|
std::mutex m_initmt;
|
2015-10-31 04:28:21 +00:00
|
|
|
std::condition_variable m_initcv;
|
2015-10-31 06:33:36 +00:00
|
|
|
std::unique_lock<std::mutex> m_initlk;
|
2015-10-31 04:28:21 +00:00
|
|
|
std::thread m_thr;
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-11-17 06:41:32 +00:00
|
|
|
struct RenderTextureResize
|
|
|
|
{
|
|
|
|
GLTextureR* tex;
|
|
|
|
size_t width;
|
|
|
|
size_t height;
|
|
|
|
};
|
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
/* These members are locked for multithreaded access */
|
2015-11-17 06:41:32 +00:00
|
|
|
std::vector<RenderTextureResize> m_pendingResizes;
|
2015-12-21 00:40:52 +00:00
|
|
|
std::vector<std::function<void(void)>> m_pendingPosts1;
|
|
|
|
std::vector<std::function<void(void)>> m_pendingPosts2;
|
2015-11-03 22:13:15 +00:00
|
|
|
std::vector<GLVertexFormat*> m_pendingFmtAdds;
|
2015-11-30 02:37:46 +00:00
|
|
|
std::vector<std::array<GLuint, 3>> m_pendingFmtDels;
|
2015-11-04 01:02:05 +00:00
|
|
|
std::vector<GLTextureR*> m_pendingFboAdds;
|
2015-10-30 00:00:56 +00:00
|
|
|
std::vector<GLuint> m_pendingFboDels;
|
|
|
|
|
2015-11-03 22:13:15 +00:00
|
|
|
static void ConfigureVertexFormat(GLVertexFormat* fmt)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2015-11-30 02:37:46 +00:00
|
|
|
glGenVertexArrays(3, fmt->m_vao);
|
2015-10-30 00:00:56 +00:00
|
|
|
|
|
|
|
size_t stride = 0;
|
2015-11-25 02:14:30 +00:00
|
|
|
size_t instStride = 0;
|
2015-10-30 00:00:56 +00:00
|
|
|
for (size_t i=0 ; i<fmt->m_elementCount ; ++i)
|
|
|
|
{
|
2015-10-30 06:26:02 +00:00
|
|
|
const VertexElementDescriptor* desc = &fmt->m_elements[i];
|
2015-11-25 02:14:30 +00:00
|
|
|
if ((desc->semantic & VertexSemantic::Instanced) != VertexSemantic::None)
|
|
|
|
instStride += SEMANTIC_SIZE_TABLE[int(desc->semantic & VertexSemantic::SemanticMask)];
|
|
|
|
else
|
|
|
|
stride += SEMANTIC_SIZE_TABLE[int(desc->semantic & VertexSemantic::SemanticMask)];
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
|
|
|
|
2015-11-30 02:37:46 +00:00
|
|
|
for (int b=0 ; b<3 ; ++b)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2015-11-30 02:37:46 +00:00
|
|
|
size_t offset = 0;
|
|
|
|
size_t instOffset = 0;
|
|
|
|
glBindVertexArray(fmt->m_vao[b]);
|
2015-12-02 21:09:49 +00:00
|
|
|
IGraphicsBuffer* lastVBO = nullptr;
|
|
|
|
IGraphicsBuffer* lastEBO = nullptr;
|
2015-11-30 02:37:46 +00:00
|
|
|
for (size_t i=0 ; i<fmt->m_elementCount ; ++i)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2015-11-30 02:37:46 +00:00
|
|
|
const VertexElementDescriptor* desc = &fmt->m_elements[i];
|
|
|
|
if (desc->vertBuffer != lastVBO)
|
|
|
|
{
|
|
|
|
lastVBO = desc->vertBuffer;
|
|
|
|
if (lastVBO->dynamic())
|
2015-12-02 21:09:49 +00:00
|
|
|
static_cast<GLGraphicsBufferD*>(lastVBO)->bindVertex(b);
|
2015-11-30 02:37:46 +00:00
|
|
|
else
|
2015-12-02 21:09:49 +00:00
|
|
|
static_cast<GLGraphicsBufferS*>(lastVBO)->bindVertex();
|
2015-11-30 02:37:46 +00:00
|
|
|
}
|
|
|
|
if (desc->indexBuffer != lastEBO)
|
|
|
|
{
|
|
|
|
lastEBO = desc->indexBuffer;
|
|
|
|
if (lastEBO->dynamic())
|
2015-12-02 21:09:49 +00:00
|
|
|
static_cast<GLGraphicsBufferD*>(lastEBO)->bindIndex(b);
|
2015-11-30 02:37:46 +00:00
|
|
|
else
|
2015-12-02 21:09:49 +00:00
|
|
|
static_cast<GLGraphicsBufferS*>(lastEBO)->bindIndex();
|
2015-11-30 02:37:46 +00:00
|
|
|
}
|
|
|
|
glEnableVertexAttribArray(i);
|
|
|
|
int maskedSem = int(desc->semantic & VertexSemantic::SemanticMask);
|
|
|
|
if ((desc->semantic & VertexSemantic::Instanced) != VertexSemantic::None)
|
|
|
|
{
|
|
|
|
glVertexAttribPointer(i, SEMANTIC_COUNT_TABLE[maskedSem],
|
|
|
|
SEMANTIC_TYPE_TABLE[maskedSem], GL_TRUE, instStride, (void*)instOffset);
|
|
|
|
glVertexAttribDivisor(i, 1);
|
|
|
|
instOffset += SEMANTIC_SIZE_TABLE[maskedSem];
|
|
|
|
}
|
2015-11-02 09:31:06 +00:00
|
|
|
else
|
2015-11-30 02:37:46 +00:00
|
|
|
{
|
|
|
|
glVertexAttribPointer(i, SEMANTIC_COUNT_TABLE[maskedSem],
|
|
|
|
SEMANTIC_TYPE_TABLE[maskedSem], GL_TRUE, stride, (void*)offset);
|
|
|
|
offset += SEMANTIC_SIZE_TABLE[maskedSem];
|
|
|
|
}
|
2015-11-25 02:14:30 +00:00
|
|
|
}
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-04 01:02:05 +00:00
|
|
|
static void ConfigureFBO(GLTextureR* tex)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
|
|
|
glGenFramebuffers(1, &tex->m_fbo);
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, tex->m_fbo);
|
|
|
|
glFramebufferTexture2D(GL_DRAW_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex->m_texs[0], 0);
|
|
|
|
glFramebufferTexture2D(GL_DRAW_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, tex->m_texs[1], 0);
|
|
|
|
}
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
static void RenderingWorker(GLCommandQueue* self)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-10-31 04:28:21 +00:00
|
|
|
{
|
2015-10-31 06:33:36 +00:00
|
|
|
std::unique_lock<std::mutex> lk(self->m_initmt);
|
2015-10-31 04:28:21 +00:00
|
|
|
self->m_parent->makeCurrent();
|
|
|
|
if (glewInit() != GLEW_OK)
|
|
|
|
Log.report(LogVisor::FatalError, "unable to init glew");
|
2016-02-15 17:53:54 +00:00
|
|
|
const GLubyte* version = glGetString(GL_VERSION);
|
2016-02-17 03:34:21 +00:00
|
|
|
Log.report(LogVisor::Info, "OpenGL Version: %s", version);
|
2015-10-31 04:28:21 +00:00
|
|
|
self->m_parent->postInit();
|
|
|
|
}
|
|
|
|
self->m_initcv.notify_one();
|
2015-10-29 04:44:38 +00:00
|
|
|
while (self->m_running)
|
|
|
|
{
|
2015-12-21 00:40:52 +00:00
|
|
|
std::vector<std::function<void(void)>> posts;
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(self->m_mt);
|
|
|
|
self->m_cv.wait(lk);
|
|
|
|
if (!self->m_running)
|
|
|
|
break;
|
|
|
|
self->m_drawBuf = self->m_completeBuf;
|
2015-10-30 00:00:56 +00:00
|
|
|
|
2015-11-17 06:41:32 +00:00
|
|
|
if (self->m_pendingResizes.size())
|
|
|
|
{
|
|
|
|
for (const RenderTextureResize& resize : self->m_pendingResizes)
|
|
|
|
resize.tex->resize(resize.width, resize.height);
|
|
|
|
self->m_pendingResizes.clear();
|
|
|
|
}
|
|
|
|
|
2015-10-30 00:00:56 +00:00
|
|
|
if (self->m_pendingFmtAdds.size())
|
2015-11-17 06:41:32 +00:00
|
|
|
{
|
2015-11-03 22:13:15 +00:00
|
|
|
for (GLVertexFormat* fmt : self->m_pendingFmtAdds)
|
2015-12-08 01:49:17 +00:00
|
|
|
if (fmt) ConfigureVertexFormat(fmt);
|
2015-11-17 06:41:32 +00:00
|
|
|
self->m_pendingFmtAdds.clear();
|
|
|
|
}
|
2015-10-30 00:00:56 +00:00
|
|
|
|
|
|
|
if (self->m_pendingFmtDels.size())
|
2015-11-17 06:41:32 +00:00
|
|
|
{
|
2015-11-30 02:37:46 +00:00
|
|
|
for (const auto& fmt : self->m_pendingFmtDels)
|
|
|
|
glDeleteVertexArrays(3, fmt.data());
|
2015-11-17 06:41:32 +00:00
|
|
|
self->m_pendingFmtDels.clear();
|
|
|
|
}
|
2015-10-30 00:00:56 +00:00
|
|
|
|
|
|
|
if (self->m_pendingFboAdds.size())
|
2015-11-17 06:41:32 +00:00
|
|
|
{
|
2015-11-04 01:02:05 +00:00
|
|
|
for (GLTextureR* tex : self->m_pendingFboAdds)
|
2015-10-30 00:00:56 +00:00
|
|
|
ConfigureFBO(tex);
|
2015-11-17 06:41:32 +00:00
|
|
|
self->m_pendingFboAdds.clear();
|
|
|
|
}
|
2015-10-30 00:00:56 +00:00
|
|
|
|
|
|
|
if (self->m_pendingFboDels.size())
|
2015-11-17 06:41:32 +00:00
|
|
|
{
|
2015-10-30 00:00:56 +00:00
|
|
|
for (GLuint fbo : self->m_pendingFboDels)
|
|
|
|
glDeleteFramebuffers(1, &fbo);
|
2015-11-17 06:41:32 +00:00
|
|
|
self->m_pendingFboDels.clear();
|
|
|
|
}
|
2015-12-21 00:40:52 +00:00
|
|
|
|
|
|
|
if (self->m_pendingPosts2.size())
|
|
|
|
posts.swap(self->m_pendingPosts2);
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
|
|
|
std::vector<Command>& cmds = self->m_cmdBufs[self->m_drawBuf];
|
|
|
|
for (const Command& cmd : cmds)
|
|
|
|
{
|
|
|
|
switch (cmd.m_op)
|
|
|
|
{
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::SetShaderDataBinding:
|
2015-11-30 02:37:46 +00:00
|
|
|
static_cast<const GLShaderDataBinding*>(cmd.binding)->bind(self->m_drawBuf);
|
2015-10-29 04:44:38 +00:00
|
|
|
break;
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::SetRenderTarget:
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-04 01:02:05 +00:00
|
|
|
const GLTextureR* tex = static_cast<const GLTextureR*>(cmd.target);
|
|
|
|
if (!tex)
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, 0);
|
|
|
|
else
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, tex->m_fbo);
|
2015-10-29 04:44:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::SetViewport:
|
2015-11-03 04:27:56 +00:00
|
|
|
glViewport(cmd.rect.location[0], cmd.rect.location[1],
|
|
|
|
cmd.rect.size[0], cmd.rect.size[1]);
|
|
|
|
break;
|
2015-11-26 00:22:05 +00:00
|
|
|
case Command::Op::SetScissor:
|
|
|
|
if (cmd.rect.size[0] == 0 && cmd.rect.size[1] == 0)
|
|
|
|
glDisable(GL_SCISSOR_TEST);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glEnable(GL_SCISSOR_TEST);
|
|
|
|
glScissor(cmd.rect.location[0], cmd.rect.location[1],
|
|
|
|
cmd.rect.size[0], cmd.rect.size[1]);
|
|
|
|
}
|
|
|
|
break;
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::SetClearColor:
|
2015-10-29 04:44:38 +00:00
|
|
|
glClearColor(cmd.rgba[0], cmd.rgba[1], cmd.rgba[2], cmd.rgba[3]);
|
|
|
|
break;
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::ClearTarget:
|
2015-10-29 04:44:38 +00:00
|
|
|
glClear(cmd.flags);
|
|
|
|
break;
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::Draw:
|
2016-02-21 06:27:54 +00:00
|
|
|
glDrawArrays(GL_TRIANGLE_STRIP, cmd.start, cmd.count);
|
2015-10-29 04:44:38 +00:00
|
|
|
break;
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::DrawIndexed:
|
2016-02-21 06:27:54 +00:00
|
|
|
glDrawElements(GL_TRIANGLE_STRIP, cmd.count, GL_UNSIGNED_INT, (void*)cmd.start);
|
2015-10-29 04:44:38 +00:00
|
|
|
break;
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::DrawInstances:
|
2016-02-21 06:27:54 +00:00
|
|
|
glDrawArraysInstanced(GL_TRIANGLE_STRIP, cmd.start, cmd.count, cmd.instCount);
|
2015-10-29 04:44:38 +00:00
|
|
|
break;
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::DrawInstancesIndexed:
|
2016-02-21 06:27:54 +00:00
|
|
|
glDrawElementsInstanced(GL_TRIANGLE_STRIP, cmd.count, GL_UNSIGNED_INT, (void*)cmd.start, cmd.instCount);
|
2015-10-29 04:44:38 +00:00
|
|
|
break;
|
2016-02-25 02:53:23 +00:00
|
|
|
case Command::Op::ResolveBindTexture:
|
|
|
|
{
|
|
|
|
const GLTextureR* tex = static_cast<const GLTextureR*>(cmd.resolveTex);
|
|
|
|
GLenum target = (tex->m_samples > 1) ? GL_TEXTURE_2D_MULTISAMPLE : GL_TEXTURE_2D;
|
|
|
|
glBindFramebuffer(GL_READ_FRAMEBUFFER, tex->m_fbo);
|
|
|
|
glActiveTexture(GL_TEXTURE9);
|
2016-02-25 05:06:13 +00:00
|
|
|
if (cmd.resolveColor && tex->m_bindTexs[0])
|
2016-02-25 02:53:23 +00:00
|
|
|
{
|
|
|
|
glBindTexture(target, tex->m_bindTexs[0]);
|
|
|
|
glCopyTexSubImage2D(target, 0, cmd.rect.location[0], cmd.rect.location[1],
|
|
|
|
cmd.rect.location[0], cmd.rect.location[1], cmd.rect.size[0], cmd.rect.size[1]);
|
|
|
|
}
|
2016-02-25 05:06:13 +00:00
|
|
|
if (cmd.resolveDepth && tex->m_bindTexs[1])
|
2016-02-25 02:53:23 +00:00
|
|
|
{
|
|
|
|
glBindTexture(target, tex->m_bindTexs[1]);
|
|
|
|
glCopyTexSubImage2D(target, 0, cmd.rect.location[0], cmd.rect.location[1],
|
|
|
|
cmd.rect.location[0], cmd.rect.location[1], cmd.rect.size[0], cmd.rect.size[1]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2015-11-21 01:12:22 +00:00
|
|
|
case Command::Op::Present:
|
2015-11-04 01:02:05 +00:00
|
|
|
{
|
|
|
|
const GLTextureR* tex = static_cast<const GLTextureR*>(cmd.source);
|
|
|
|
if (tex)
|
|
|
|
{
|
|
|
|
glBindFramebuffer(GL_READ_FRAMEBUFFER, tex->m_fbo);
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, 0);
|
|
|
|
glBlitFramebuffer(0, 0, tex->m_width, tex->m_height, 0, 0,
|
|
|
|
tex->m_width, tex->m_height, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
|
|
|
}
|
2015-10-31 04:28:21 +00:00
|
|
|
self->m_parent->present();
|
|
|
|
break;
|
2015-11-04 01:02:05 +00:00
|
|
|
}
|
2015-10-29 04:44:38 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cmds.clear();
|
2015-12-21 00:40:52 +00:00
|
|
|
for (auto& p : posts)
|
|
|
|
p();
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
GLCommandQueue(IGraphicsContext* parent)
|
2015-10-29 04:44:38 +00:00
|
|
|
: m_parent(parent),
|
2015-10-31 06:33:36 +00:00
|
|
|
m_initlk(m_initmt),
|
2015-10-31 04:28:21 +00:00
|
|
|
m_thr(RenderingWorker, this)
|
|
|
|
{
|
|
|
|
m_initcv.wait(m_initlk);
|
|
|
|
m_initlk.unlock();
|
|
|
|
}
|
2015-10-29 04:44:38 +00:00
|
|
|
|
2015-12-05 00:41:30 +00:00
|
|
|
void stopRenderer()
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
|
|
|
m_running = false;
|
|
|
|
m_cv.notify_one();
|
|
|
|
m_thr.join();
|
|
|
|
}
|
|
|
|
|
2015-12-05 00:41:30 +00:00
|
|
|
~GLCommandQueue()
|
|
|
|
{
|
|
|
|
if (m_running) stopRenderer();
|
|
|
|
}
|
|
|
|
|
2015-11-03 04:27:56 +00:00
|
|
|
void setShaderDataBinding(IShaderDataBinding* binding)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::SetShaderDataBinding);
|
2015-10-29 04:44:38 +00:00
|
|
|
cmds.back().binding = binding;
|
|
|
|
}
|
2015-11-04 01:02:05 +00:00
|
|
|
|
|
|
|
void setRenderTarget(ITextureR* target)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::SetRenderTarget);
|
2015-10-29 04:44:38 +00:00
|
|
|
cmds.back().target = target;
|
|
|
|
}
|
2015-11-04 01:02:05 +00:00
|
|
|
|
2015-11-03 04:27:56 +00:00
|
|
|
void setViewport(const SWindowRect& rect)
|
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::SetViewport);
|
2015-11-03 04:27:56 +00:00
|
|
|
cmds.back().rect = rect;
|
|
|
|
}
|
2015-11-26 00:22:05 +00:00
|
|
|
|
|
|
|
void setScissor(const SWindowRect& rect)
|
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
|
|
|
cmds.emplace_back(Command::Op::SetScissor);
|
|
|
|
cmds.back().rect = rect;
|
|
|
|
}
|
2015-11-25 02:14:30 +00:00
|
|
|
|
2015-11-04 01:58:36 +00:00
|
|
|
void resizeRenderTexture(ITextureR* tex, size_t width, size_t height)
|
|
|
|
{
|
2015-11-17 06:41:32 +00:00
|
|
|
std::unique_lock<std::mutex> lk(m_mt);
|
|
|
|
GLTextureR* texgl = static_cast<GLTextureR*>(tex);
|
|
|
|
m_pendingResizes.push_back({texgl, width, height});
|
|
|
|
}
|
|
|
|
|
2015-12-21 00:40:52 +00:00
|
|
|
void schedulePostFrameHandler(std::function<void(void)>&& func)
|
|
|
|
{
|
|
|
|
m_pendingPosts1.push_back(std::move(func));
|
|
|
|
}
|
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
void setClearColor(const float rgba[4])
|
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::SetClearColor);
|
2015-10-29 04:44:38 +00:00
|
|
|
cmds.back().rgba[0] = rgba[0];
|
|
|
|
cmds.back().rgba[1] = rgba[1];
|
|
|
|
cmds.back().rgba[2] = rgba[2];
|
|
|
|
cmds.back().rgba[3] = rgba[3];
|
|
|
|
}
|
2015-11-04 01:02:05 +00:00
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
void clearTarget(bool render=true, bool depth=true)
|
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::ClearTarget);
|
2015-10-29 04:44:38 +00:00
|
|
|
cmds.back().flags = 0;
|
|
|
|
if (render)
|
|
|
|
cmds.back().flags |= GL_COLOR_BUFFER_BIT;
|
|
|
|
if (depth)
|
|
|
|
cmds.back().flags |= GL_DEPTH_BUFFER_BIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void draw(size_t start, size_t count)
|
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::Draw);
|
2015-10-29 04:44:38 +00:00
|
|
|
cmds.back().start = start;
|
|
|
|
cmds.back().count = count;
|
|
|
|
}
|
2015-11-04 01:02:05 +00:00
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
void drawIndexed(size_t start, size_t count)
|
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::DrawIndexed);
|
2015-10-29 04:44:38 +00:00
|
|
|
cmds.back().start = start;
|
|
|
|
cmds.back().count = count;
|
|
|
|
}
|
2015-11-04 01:02:05 +00:00
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
void drawInstances(size_t start, size_t count, size_t instCount)
|
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::DrawInstances);
|
2015-10-29 04:44:38 +00:00
|
|
|
cmds.back().start = start;
|
|
|
|
cmds.back().count = count;
|
|
|
|
cmds.back().instCount = instCount;
|
|
|
|
}
|
2015-11-04 01:02:05 +00:00
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
void drawInstancesIndexed(size_t start, size_t count, size_t instCount)
|
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::DrawInstancesIndexed);
|
2015-10-29 04:44:38 +00:00
|
|
|
cmds.back().start = start;
|
|
|
|
cmds.back().count = count;
|
|
|
|
cmds.back().instCount = instCount;
|
|
|
|
}
|
|
|
|
|
2016-02-25 05:06:13 +00:00
|
|
|
void resolveBindTexture(ITextureR* texture, const SWindowRect& rect, bool tlOrigin, bool color, bool depth)
|
2016-02-25 02:53:23 +00:00
|
|
|
{
|
2016-02-27 01:38:13 +00:00
|
|
|
GLTextureR* tex = static_cast<GLTextureR*>(texture);
|
2016-02-25 02:53:23 +00:00
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
|
|
|
cmds.emplace_back(Command::Op::ResolveBindTexture);
|
|
|
|
cmds.back().resolveTex = texture;
|
2016-02-25 05:06:13 +00:00
|
|
|
cmds.back().resolveColor = color;
|
|
|
|
cmds.back().resolveDepth = depth;
|
2016-02-27 01:38:13 +00:00
|
|
|
SWindowRect intersectRect = rect.intersect(SWindowRect(0, 0, tex->m_width, tex->m_height));
|
2016-02-26 20:16:21 +00:00
|
|
|
SWindowRect& targetRect = cmds.back().rect;
|
2016-02-27 01:38:13 +00:00
|
|
|
targetRect.location[0] = intersectRect.location[0];
|
2016-02-25 02:53:23 +00:00
|
|
|
if (tlOrigin)
|
2016-02-27 01:38:13 +00:00
|
|
|
targetRect.location[1] = tex->m_height - intersectRect.location[1] - intersectRect.size[1];
|
2016-02-26 20:16:21 +00:00
|
|
|
else
|
2016-02-27 01:38:13 +00:00
|
|
|
targetRect.location[1] = intersectRect.location[1];
|
|
|
|
targetRect.size[0] = intersectRect.size[0];
|
|
|
|
targetRect.size[1] = intersectRect.size[1];
|
2016-02-25 02:53:23 +00:00
|
|
|
}
|
|
|
|
|
2015-11-04 01:02:05 +00:00
|
|
|
void resolveDisplay(ITextureR* source)
|
2015-10-31 04:28:21 +00:00
|
|
|
{
|
|
|
|
std::vector<Command>& cmds = m_cmdBufs[m_fillBuf];
|
2015-11-21 01:12:22 +00:00
|
|
|
cmds.emplace_back(Command::Op::Present);
|
2015-11-04 01:02:05 +00:00
|
|
|
cmds.back().source = source;
|
2015-10-31 04:28:21 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-03 22:13:15 +00:00
|
|
|
void addVertexFormat(GLVertexFormat* fmt)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_mt);
|
|
|
|
m_pendingFmtAdds.push_back(fmt);
|
|
|
|
}
|
|
|
|
|
2015-11-03 22:13:15 +00:00
|
|
|
void delVertexFormat(GLVertexFormat* fmt)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_mt);
|
2015-12-08 01:49:17 +00:00
|
|
|
bool foundAdd = false;
|
|
|
|
for (GLVertexFormat*& afmt : m_pendingFmtAdds)
|
|
|
|
if (afmt == fmt)
|
|
|
|
{
|
|
|
|
foundAdd = true;
|
|
|
|
afmt = nullptr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!foundAdd)
|
|
|
|
m_pendingFmtDels.push_back({fmt->m_vao[0], fmt->m_vao[1], fmt->m_vao[2]});
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
|
|
|
|
2015-11-04 01:02:05 +00:00
|
|
|
void addFBO(GLTextureR* tex)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_mt);
|
|
|
|
m_pendingFboAdds.push_back(tex);
|
|
|
|
}
|
|
|
|
|
2015-11-04 01:02:05 +00:00
|
|
|
void delFBO(GLTextureR* tex)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_mt);
|
|
|
|
m_pendingFboDels.push_back(tex->m_fbo);
|
|
|
|
}
|
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
void execute()
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_mt);
|
|
|
|
m_completeBuf = m_fillBuf;
|
|
|
|
for (size_t i=0 ; i<3 ; ++i)
|
|
|
|
{
|
|
|
|
if (i == m_completeBuf || i == m_drawBuf)
|
|
|
|
continue;
|
|
|
|
m_fillBuf = i;
|
|
|
|
break;
|
|
|
|
}
|
2015-12-02 21:09:49 +00:00
|
|
|
|
|
|
|
/* Update dynamic data here */
|
|
|
|
GLDataFactory* gfxF = static_cast<GLDataFactory*>(m_parent->getDataFactory());
|
2015-12-14 04:54:57 +00:00
|
|
|
std::unique_lock<std::mutex> datalk(gfxF->m_committedMutex);
|
2015-12-02 21:09:49 +00:00
|
|
|
for (GLData* d : gfxF->m_committedData)
|
|
|
|
{
|
|
|
|
for (std::unique_ptr<GLGraphicsBufferD>& b : d->m_DBufs)
|
|
|
|
b->update(m_completeBuf);
|
|
|
|
for (std::unique_ptr<GLTextureD>& t : d->m_DTexs)
|
|
|
|
t->update(m_completeBuf);
|
|
|
|
}
|
2015-12-14 04:54:57 +00:00
|
|
|
datalk.unlock();
|
2015-12-02 21:09:49 +00:00
|
|
|
glFlush();
|
|
|
|
|
2015-12-21 00:40:52 +00:00
|
|
|
for (auto& p : m_pendingPosts1)
|
|
|
|
m_pendingPosts2.push_back(std::move(p));
|
|
|
|
m_pendingPosts1.clear();
|
|
|
|
|
2015-10-29 04:44:38 +00:00
|
|
|
lk.unlock();
|
|
|
|
m_cv.notify_one();
|
|
|
|
m_cmdBufs[m_fillBuf].clear();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-12-02 21:09:49 +00:00
|
|
|
void GLGraphicsBufferD::update(int b)
|
|
|
|
{
|
|
|
|
int slot = 1 << b;
|
|
|
|
if ((slot & m_validMask) == 0)
|
|
|
|
{
|
|
|
|
glBindBuffer(m_target, m_bufs[b]);
|
2016-01-08 00:04:37 +00:00
|
|
|
glBufferSubData(m_target, 0, m_cpuSz, m_cpuBuf.get());
|
2015-12-02 21:09:49 +00:00
|
|
|
m_validMask |= slot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
void GLGraphicsBufferD::load(const void* data, size_t sz)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2015-12-02 21:09:49 +00:00
|
|
|
size_t bufSz = std::min(sz, m_cpuSz);
|
|
|
|
memcpy(m_cpuBuf.get(), data, bufSz);
|
|
|
|
m_validMask = 0;
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
2015-11-02 10:07:15 +00:00
|
|
|
void* GLGraphicsBufferD::map(size_t sz)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2015-12-02 21:09:49 +00:00
|
|
|
if (sz < m_cpuSz)
|
|
|
|
return nullptr;
|
|
|
|
return m_cpuBuf.get();
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
2015-11-02 10:07:15 +00:00
|
|
|
void GLGraphicsBufferD::unmap()
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2015-12-02 21:09:49 +00:00
|
|
|
m_validMask = 0;
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
2015-12-02 21:09:49 +00:00
|
|
|
void GLGraphicsBufferD::bindVertex(int b)
|
2015-11-30 02:37:46 +00:00
|
|
|
{glBindBuffer(GL_ARRAY_BUFFER, m_bufs[b]);}
|
2015-12-02 21:09:49 +00:00
|
|
|
void GLGraphicsBufferD::bindIndex(int b)
|
2015-11-30 02:37:46 +00:00
|
|
|
{glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_bufs[b]);}
|
2015-12-02 21:09:49 +00:00
|
|
|
void GLGraphicsBufferD::bindUniform(size_t idx, int b)
|
2015-11-30 02:37:46 +00:00
|
|
|
{glBindBufferBase(GL_UNIFORM_BUFFER, idx, m_bufs[b]);}
|
2015-10-30 00:00:56 +00:00
|
|
|
|
|
|
|
IGraphicsBufferD*
|
2015-11-02 10:07:15 +00:00
|
|
|
GLDataFactory::newDynamicBuffer(BufferUse use, size_t stride, size_t count)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2016-01-08 00:04:37 +00:00
|
|
|
GLGraphicsBufferD* retval = new GLGraphicsBufferD(use, stride * count);
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_DBufs.emplace_back(retval);
|
2015-10-30 00:00:56 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2016-01-08 00:04:37 +00:00
|
|
|
GLTextureD::GLTextureD(size_t width, size_t height, TextureFormat fmt)
|
|
|
|
: m_width(width), m_height(height)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2016-01-08 00:04:37 +00:00
|
|
|
int pxPitch = 4;
|
2015-12-02 21:09:49 +00:00
|
|
|
switch (fmt)
|
|
|
|
{
|
|
|
|
case TextureFormat::RGBA8:
|
|
|
|
m_intFormat = GL_RGBA;
|
|
|
|
m_format = GL_RGBA;
|
|
|
|
pxPitch = 4;
|
|
|
|
break;
|
|
|
|
case TextureFormat::I8:
|
|
|
|
m_intFormat = GL_R8;
|
|
|
|
m_format = GL_RED;
|
|
|
|
pxPitch = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Log.report(LogVisor::FatalError, "unsupported tex format");
|
|
|
|
}
|
|
|
|
m_cpuSz = width * height * pxPitch;
|
|
|
|
m_cpuBuf.reset(new uint8_t[m_cpuSz]);
|
|
|
|
|
2015-11-04 01:02:05 +00:00
|
|
|
glGenTextures(3, m_texs);
|
2015-10-30 00:00:56 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[0]);
|
2015-12-02 21:09:49 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, m_intFormat, width, height, 0, m_format, GL_UNSIGNED_BYTE, nullptr);
|
2015-10-30 00:00:56 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[1]);
|
2015-12-02 21:09:49 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, m_intFormat, width, height, 0, m_format, GL_UNSIGNED_BYTE, nullptr);
|
2015-11-04 01:02:05 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[2]);
|
2015-12-02 21:09:49 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, m_intFormat, width, height, 0, m_format, GL_UNSIGNED_BYTE, nullptr);
|
2015-11-04 01:02:05 +00:00
|
|
|
}
|
|
|
|
GLTextureD::~GLTextureD() {glDeleteTextures(3, m_texs);}
|
|
|
|
|
2015-12-02 21:09:49 +00:00
|
|
|
void GLTextureD::update(int b)
|
|
|
|
{
|
|
|
|
int slot = 1 << b;
|
|
|
|
if ((slot & m_validMask) == 0)
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[b]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, m_intFormat, m_width, m_height, 0, m_format, GL_UNSIGNED_BYTE, m_cpuBuf.get());
|
|
|
|
m_validMask |= slot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-04 01:02:05 +00:00
|
|
|
void GLTextureD::load(const void* data, size_t sz)
|
|
|
|
{
|
2015-12-02 21:09:49 +00:00
|
|
|
size_t bufSz = std::min(sz, m_cpuSz);
|
|
|
|
memcpy(m_cpuBuf.get(), data, bufSz);
|
|
|
|
m_validMask = 0;
|
2015-11-04 01:02:05 +00:00
|
|
|
}
|
|
|
|
void* GLTextureD::map(size_t sz)
|
|
|
|
{
|
2015-12-02 21:09:49 +00:00
|
|
|
if (sz > m_cpuSz)
|
|
|
|
return nullptr;
|
|
|
|
return m_cpuBuf.get();
|
2015-11-04 01:02:05 +00:00
|
|
|
}
|
|
|
|
void GLTextureD::unmap()
|
|
|
|
{
|
2015-12-02 21:09:49 +00:00
|
|
|
m_validMask = 0;
|
2015-11-04 01:02:05 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 21:09:49 +00:00
|
|
|
void GLTextureD::bind(size_t idx, int b)
|
2015-11-04 01:02:05 +00:00
|
|
|
{
|
|
|
|
glActiveTexture(GL_TEXTURE0 + idx);
|
2015-12-02 21:09:49 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[b]);
|
2015-10-30 00:00:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ITextureD*
|
2015-11-02 10:07:15 +00:00
|
|
|
GLDataFactory::newDynamicTexture(size_t width, size_t height, TextureFormat fmt)
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
2016-01-08 00:04:37 +00:00
|
|
|
GLTextureD* retval = new GLTextureD(width, height, fmt);
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_DTexs.emplace_back(retval);
|
2015-10-30 00:00:56 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2016-02-25 02:53:23 +00:00
|
|
|
GLTextureR::GLTextureR(GLCommandQueue* q, size_t width, size_t height, size_t samples,
|
|
|
|
bool enableShaderColorBinding, bool enableShaderDepthBinding)
|
2015-11-04 01:02:05 +00:00
|
|
|
: m_q(q), m_width(width), m_height(height), m_samples(samples)
|
|
|
|
{
|
|
|
|
glGenTextures(2, m_texs);
|
2016-02-25 02:53:23 +00:00
|
|
|
if (enableShaderColorBinding)
|
|
|
|
glGenTextures(1, &m_bindTexs[0]);
|
|
|
|
if (enableShaderDepthBinding)
|
|
|
|
glGenTextures(1, &m_bindTexs[1]);
|
2016-01-08 00:04:37 +00:00
|
|
|
if (samples > 1)
|
|
|
|
{
|
|
|
|
m_target = GL_TEXTURE_2D_MULTISAMPLE;
|
|
|
|
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, m_texs[0]);
|
|
|
|
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, samples, GL_RGBA, width, height, GL_FALSE);
|
|
|
|
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, m_texs[1]);
|
|
|
|
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, samples, GL_DEPTH_COMPONENT24, width, height, GL_FALSE);
|
2016-02-25 02:53:23 +00:00
|
|
|
|
|
|
|
if (enableShaderColorBinding)
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, m_bindTexs[0]);
|
|
|
|
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, samples, GL_RGBA, width, height, GL_FALSE);
|
|
|
|
}
|
|
|
|
if (enableShaderDepthBinding)
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, m_bindTexs[1]);
|
|
|
|
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, samples, GL_DEPTH_COMPONENT24, width, height, GL_FALSE);
|
|
|
|
}
|
2016-01-08 00:04:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_target = GL_TEXTURE_2D;
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[0]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_texs[1]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, width, height, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr);
|
2016-02-25 02:53:23 +00:00
|
|
|
|
|
|
|
if (enableShaderColorBinding)
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_bindTexs[0]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
}
|
|
|
|
if (enableShaderDepthBinding)
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_bindTexs[1]);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, width, height, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
}
|
2016-01-08 00:04:37 +00:00
|
|
|
}
|
2015-11-04 01:02:05 +00:00
|
|
|
m_q->addFBO(this);
|
|
|
|
}
|
2016-02-25 02:53:23 +00:00
|
|
|
GLTextureR::~GLTextureR()
|
|
|
|
{
|
|
|
|
glDeleteTextures(2, m_texs);
|
|
|
|
glDeleteTextures(2, m_bindTexs);
|
|
|
|
m_q->delFBO(this);
|
|
|
|
}
|
2015-11-04 01:02:05 +00:00
|
|
|
|
|
|
|
ITextureR*
|
2016-02-25 02:53:23 +00:00
|
|
|
GLDataFactory::newRenderTexture(size_t width, size_t height,
|
|
|
|
bool enableShaderColorBinding, bool enableShaderDepthBinding)
|
2015-11-04 01:02:05 +00:00
|
|
|
{
|
|
|
|
GLCommandQueue* q = static_cast<GLCommandQueue*>(m_parent->getCommandQueue());
|
2016-02-25 02:53:23 +00:00
|
|
|
GLTextureR* retval = new GLTextureR(q, width, height, m_drawSamples,
|
|
|
|
enableShaderColorBinding, enableShaderDepthBinding);
|
2015-11-17 06:41:32 +00:00
|
|
|
q->resizeRenderTexture(retval, width, height);
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_RTexs.emplace_back(retval);
|
2015-11-04 01:02:05 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-11-03 22:13:15 +00:00
|
|
|
GLVertexFormat::GLVertexFormat(GLCommandQueue* q, size_t elementCount,
|
2015-12-08 01:49:17 +00:00
|
|
|
const VertexElementDescriptor* elements)
|
2015-10-30 00:00:56 +00:00
|
|
|
: m_q(q),
|
|
|
|
m_elementCount(elementCount),
|
2015-10-30 06:26:02 +00:00
|
|
|
m_elements(new VertexElementDescriptor[elementCount])
|
2015-10-30 00:00:56 +00:00
|
|
|
{
|
|
|
|
for (size_t i=0 ; i<elementCount ; ++i)
|
|
|
|
m_elements[i] = elements[i];
|
|
|
|
m_q->addVertexFormat(this);
|
|
|
|
}
|
2015-11-03 22:13:15 +00:00
|
|
|
GLVertexFormat::~GLVertexFormat() {m_q->delVertexFormat(this);}
|
2015-10-30 00:00:56 +00:00
|
|
|
|
2015-11-02 10:07:15 +00:00
|
|
|
IVertexFormat* GLDataFactory::newVertexFormat
|
2015-10-30 00:00:56 +00:00
|
|
|
(size_t elementCount, const VertexElementDescriptor* elements)
|
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
GLCommandQueue* q = static_cast<GLCommandQueue*>(m_parent->getCommandQueue());
|
2015-11-03 22:13:15 +00:00
|
|
|
GLVertexFormat* retval = new struct GLVertexFormat(q, elementCount, elements);
|
2015-12-18 21:33:53 +00:00
|
|
|
if (!m_deferredData.get())
|
|
|
|
m_deferredData.reset(new struct GLData());
|
|
|
|
m_deferredData->m_VFmts.emplace_back(retval);
|
2015-10-30 00:00:56 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-11-07 01:43:12 +00:00
|
|
|
IGraphicsCommandQueue* _NewGLCommandQueue(IGraphicsContext* parent)
|
2015-10-29 04:44:38 +00:00
|
|
|
{
|
2015-11-02 10:07:15 +00:00
|
|
|
return new struct GLCommandQueue(parent);
|
2015-10-29 04:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|