2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2011 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:29:41 +00:00
|
|
|
// Refer to the license.txt file included.
|
2011-12-09 23:30:05 +00:00
|
|
|
|
2017-02-01 04:29:29 +00:00
|
|
|
#include "VideoBackends/OGL/ProgramShaderCache.h"
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
#include <limits>
|
2015-12-21 15:15:17 +00:00
|
|
|
#include <memory>
|
2014-03-30 18:58:05 +00:00
|
|
|
#include <string>
|
|
|
|
|
2016-11-27 10:56:22 +00:00
|
|
|
#include "Common/Align.h"
|
2017-02-01 15:56:13 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2017-01-15 20:46:32 +00:00
|
|
|
#include "Common/FileUtil.h"
|
2017-07-20 05:25:29 +00:00
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
2017-02-01 15:56:13 +00:00
|
|
|
#include "Common/Logging/Log.h"
|
2017-02-01 04:29:29 +00:00
|
|
|
#include "Common/MsgHandler.h"
|
2014-06-03 05:08:54 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2017-07-20 05:25:29 +00:00
|
|
|
#include "Common/Timer.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2016-11-27 21:31:48 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
2017-07-20 05:25:29 +00:00
|
|
|
#include "Core/Host.h"
|
2016-11-27 21:31:48 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/OGL/Render.h"
|
|
|
|
#include "VideoBackends/OGL/StreamBuffer.h"
|
2017-07-20 05:25:29 +00:00
|
|
|
#include "VideoBackends/OGL/VertexManager.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
#include "VideoCommon/AsyncShaderCompiler.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/Debugger.h"
|
2017-07-20 05:25:29 +00:00
|
|
|
#include "VideoCommon/DriverDetails.h"
|
2014-12-14 20:23:13 +00:00
|
|
|
#include "VideoCommon/GeometryShaderManager.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/ImageWrite.h"
|
|
|
|
#include "VideoCommon/PixelShaderManager.h"
|
2014-02-19 11:14:09 +00:00
|
|
|
#include "VideoCommon/Statistics.h"
|
2017-07-20 05:25:29 +00:00
|
|
|
#include "VideoCommon/UberShaderPixel.h"
|
|
|
|
#include "VideoCommon/UberShaderVertex.h"
|
|
|
|
#include "VideoCommon/VertexLoaderManager.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/VertexShaderManager.h"
|
2016-07-21 23:04:57 +00:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2011-12-10 21:58:44 +00:00
|
|
|
|
2011-12-01 03:00:21 +00:00
|
|
|
namespace OGL
|
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
static constexpr u32 UBO_LENGTH = 32 * 1024 * 1024;
|
|
|
|
static constexpr u32 INVALID_VAO = std::numeric_limits<u32>::max();
|
2013-01-25 12:20:42 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
std::unique_ptr<ProgramShaderCache::SharedContextAsyncShaderCompiler>
|
|
|
|
ProgramShaderCache::s_async_compiler;
|
2013-01-14 12:58:11 +00:00
|
|
|
u32 ProgramShaderCache::s_ubo_buffer_size;
|
2013-10-07 15:19:47 +00:00
|
|
|
s32 ProgramShaderCache::s_ubo_align;
|
2017-07-20 05:25:29 +00:00
|
|
|
u32 ProgramShaderCache::s_last_VAO = INVALID_VAO;
|
2011-12-26 05:15:54 +00:00
|
|
|
|
2015-12-21 15:15:17 +00:00
|
|
|
static std::unique_ptr<StreamBuffer> s_buffer;
|
2013-05-04 21:30:13 +00:00
|
|
|
static int num_failures = 0;
|
2013-01-31 22:11:53 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
static LinearDiskCache<SHADERUID, u8> s_program_disk_cache;
|
|
|
|
static LinearDiskCache<UBERSHADERUID, u8> s_uber_program_disk_cache;
|
2013-02-13 20:34:48 +00:00
|
|
|
static GLuint CurrentProgram = 0;
|
|
|
|
ProgramShaderCache::PCache ProgramShaderCache::pshaders;
|
2017-07-20 05:25:29 +00:00
|
|
|
ProgramShaderCache::UberPCache ProgramShaderCache::ubershaders;
|
2013-02-13 12:12:19 +00:00
|
|
|
ProgramShaderCache::PCacheEntry* ProgramShaderCache::last_entry;
|
2017-07-20 05:25:29 +00:00
|
|
|
ProgramShaderCache::PCacheEntry* ProgramShaderCache::last_uber_entry;
|
2013-02-13 12:12:19 +00:00
|
|
|
SHADERUID ProgramShaderCache::last_uid;
|
2017-07-20 05:25:29 +00:00
|
|
|
UBERSHADERUID ProgramShaderCache::last_uber_uid;
|
2015-11-04 00:56:02 +00:00
|
|
|
static std::string s_glsl_header = "";
|
2013-02-13 20:34:48 +00:00
|
|
|
|
2014-07-08 12:29:26 +00:00
|
|
|
static std::string GetGLSLVersionString()
|
2014-03-30 18:58:05 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
GLSL_VERSION v = g_ogl_config.eSupportedGLSLVersion;
|
|
|
|
switch (v)
|
|
|
|
{
|
|
|
|
case GLSLES_300:
|
|
|
|
return "#version 300 es";
|
|
|
|
case GLSLES_310:
|
|
|
|
return "#version 310 es";
|
|
|
|
case GLSLES_320:
|
|
|
|
return "#version 320 es";
|
|
|
|
case GLSL_130:
|
|
|
|
return "#version 130";
|
|
|
|
case GLSL_140:
|
|
|
|
return "#version 140";
|
|
|
|
case GLSL_150:
|
|
|
|
return "#version 150";
|
|
|
|
case GLSL_330:
|
|
|
|
return "#version 330";
|
|
|
|
case GLSL_400:
|
|
|
|
return "#version 400";
|
2016-11-27 08:14:56 +00:00
|
|
|
case GLSL_430:
|
|
|
|
return "#version 430";
|
2016-06-24 08:43:46 +00:00
|
|
|
default:
|
|
|
|
// Shouldn't ever hit this
|
|
|
|
return "#version ERROR";
|
|
|
|
}
|
2014-03-30 18:58:05 +00:00
|
|
|
}
|
|
|
|
|
2013-02-13 12:12:19 +00:00
|
|
|
void SHADER::SetProgramVariables()
|
2011-12-26 05:15:54 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// Bind UBO and texture samplers
|
|
|
|
if (!g_ActiveConfig.backend_info.bSupportsBindingLayout)
|
|
|
|
{
|
|
|
|
// glsl shader must be bind to set samplers if we don't support binding layout
|
|
|
|
Bind();
|
|
|
|
|
|
|
|
GLint PSBlock_id = glGetUniformBlockIndex(glprogid, "PSBlock");
|
|
|
|
GLint VSBlock_id = glGetUniformBlockIndex(glprogid, "VSBlock");
|
|
|
|
GLint GSBlock_id = glGetUniformBlockIndex(glprogid, "GSBlock");
|
2017-07-20 05:25:29 +00:00
|
|
|
GLint UBERBlock_id = glGetUniformBlockIndex(glprogid, "UBERBlock");
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
if (PSBlock_id != -1)
|
|
|
|
glUniformBlockBinding(glprogid, PSBlock_id, 1);
|
|
|
|
if (VSBlock_id != -1)
|
|
|
|
glUniformBlockBinding(glprogid, VSBlock_id, 2);
|
|
|
|
if (GSBlock_id != -1)
|
|
|
|
glUniformBlockBinding(glprogid, GSBlock_id, 3);
|
2017-07-20 05:25:29 +00:00
|
|
|
if (UBERBlock_id != -1)
|
|
|
|
glUniformBlockBinding(glprogid, UBERBlock_id, 4);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Bind Texture Samplers
|
|
|
|
for (int a = 0; a <= 9; ++a)
|
|
|
|
{
|
|
|
|
std::string name = StringFromFormat(a < 8 ? "samp[%d]" : "samp%d", a);
|
|
|
|
|
|
|
|
// Still need to get sampler locations since we aren't binding them statically in the shaders
|
|
|
|
int loc = glGetUniformLocation(glprogid, name.c_str());
|
|
|
|
if (loc != -1)
|
|
|
|
glUniform1i(loc, a);
|
|
|
|
}
|
|
|
|
}
|
2012-12-31 01:34:27 +00:00
|
|
|
}
|
|
|
|
|
2016-11-27 08:14:56 +00:00
|
|
|
void SHADER::SetProgramBindings(bool is_compute)
|
2012-12-31 01:34:27 +00:00
|
|
|
{
|
2016-11-27 08:14:56 +00:00
|
|
|
if (!is_compute)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-11-27 08:14:56 +00:00
|
|
|
if (g_ActiveConfig.backend_info.bSupportsDualSourceBlend)
|
|
|
|
{
|
|
|
|
// So we do support extended blending
|
|
|
|
// So we need to set a few more things here.
|
|
|
|
// Bind our out locations
|
|
|
|
glBindFragDataLocationIndexed(glprogid, 0, 0, "ocol0");
|
|
|
|
glBindFragDataLocationIndexed(glprogid, 0, 1, "ocol1");
|
|
|
|
}
|
|
|
|
// Need to set some attribute locations
|
|
|
|
glBindAttribLocation(glprogid, SHADER_POSITION_ATTRIB, "rawpos");
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-11-27 08:14:56 +00:00
|
|
|
glBindAttribLocation(glprogid, SHADER_POSMTX_ATTRIB, "posmtx");
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-26 15:01:25 +00:00
|
|
|
glBindAttribLocation(glprogid, SHADER_COLOR0_ATTRIB, "rawcolor0");
|
|
|
|
glBindAttribLocation(glprogid, SHADER_COLOR1_ATTRIB, "rawcolor1");
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-11-27 08:14:56 +00:00
|
|
|
glBindAttribLocation(glprogid, SHADER_NORM0_ATTRIB, "rawnorm0");
|
|
|
|
glBindAttribLocation(glprogid, SHADER_NORM1_ATTRIB, "rawnorm1");
|
|
|
|
glBindAttribLocation(glprogid, SHADER_NORM2_ATTRIB, "rawnorm2");
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
{
|
2017-07-26 15:01:25 +00:00
|
|
|
std::string attrib_name = StringFromFormat("rawtex%d", i);
|
2016-06-24 08:43:46 +00:00
|
|
|
glBindAttribLocation(glprogid, SHADER_TEXTURE0_ATTRIB + i, attrib_name.c_str());
|
|
|
|
}
|
2011-12-26 05:15:54 +00:00
|
|
|
}
|
2011-12-11 10:14:02 +00:00
|
|
|
|
2017-04-23 04:44:34 +00:00
|
|
|
void SHADER::Bind() const
|
2013-02-13 12:12:19 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
if (CurrentProgram != glprogid)
|
|
|
|
{
|
|
|
|
INCSTAT(stats.thisFrame.numShaderChanges);
|
|
|
|
glUseProgram(glprogid);
|
|
|
|
CurrentProgram = glprogid;
|
|
|
|
}
|
2013-02-13 12:12:19 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
void SHADER::DestroyShaders()
|
|
|
|
{
|
|
|
|
if (vsid)
|
|
|
|
{
|
|
|
|
glDeleteShader(vsid);
|
|
|
|
vsid = 0;
|
|
|
|
}
|
|
|
|
if (gsid)
|
|
|
|
{
|
|
|
|
glDeleteShader(gsid);
|
|
|
|
gsid = 0;
|
|
|
|
}
|
|
|
|
if (psid)
|
|
|
|
{
|
|
|
|
glDeleteShader(psid);
|
|
|
|
psid = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-13 12:12:19 +00:00
|
|
|
void ProgramShaderCache::UploadConstants()
|
2011-12-26 05:15:54 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
if (PixelShaderManager::dirty || VertexShaderManager::dirty || GeometryShaderManager::dirty)
|
|
|
|
{
|
|
|
|
auto buffer = s_buffer->Map(s_ubo_buffer_size, s_ubo_align);
|
|
|
|
|
|
|
|
memcpy(buffer.first, &PixelShaderManager::constants, sizeof(PixelShaderConstants));
|
|
|
|
|
2016-11-27 10:56:22 +00:00
|
|
|
memcpy(buffer.first + Common::AlignUp(sizeof(PixelShaderConstants), s_ubo_align),
|
2016-06-24 08:43:46 +00:00
|
|
|
&VertexShaderManager::constants, sizeof(VertexShaderConstants));
|
|
|
|
|
2016-11-27 10:56:22 +00:00
|
|
|
memcpy(buffer.first + Common::AlignUp(sizeof(PixelShaderConstants), s_ubo_align) +
|
|
|
|
Common::AlignUp(sizeof(VertexShaderConstants), s_ubo_align),
|
2016-06-24 08:43:46 +00:00
|
|
|
&GeometryShaderManager::constants, sizeof(GeometryShaderConstants));
|
|
|
|
|
|
|
|
s_buffer->Unmap(s_ubo_buffer_size);
|
|
|
|
glBindBufferRange(GL_UNIFORM_BUFFER, 1, s_buffer->m_buffer, buffer.second,
|
|
|
|
sizeof(PixelShaderConstants));
|
|
|
|
glBindBufferRange(GL_UNIFORM_BUFFER, 2, s_buffer->m_buffer,
|
2016-11-27 10:56:22 +00:00
|
|
|
buffer.second + Common::AlignUp(sizeof(PixelShaderConstants), s_ubo_align),
|
2016-06-24 08:43:46 +00:00
|
|
|
sizeof(VertexShaderConstants));
|
|
|
|
glBindBufferRange(GL_UNIFORM_BUFFER, 3, s_buffer->m_buffer,
|
2016-11-27 10:56:22 +00:00
|
|
|
buffer.second + Common::AlignUp(sizeof(PixelShaderConstants), s_ubo_align) +
|
|
|
|
Common::AlignUp(sizeof(VertexShaderConstants), s_ubo_align),
|
2016-06-24 08:43:46 +00:00
|
|
|
sizeof(GeometryShaderConstants));
|
|
|
|
|
|
|
|
PixelShaderManager::dirty = false;
|
|
|
|
VertexShaderManager::dirty = false;
|
|
|
|
GeometryShaderManager::dirty = false;
|
|
|
|
|
|
|
|
ADDSTAT(stats.thisFrame.bytesUniformStreamed, s_ubo_buffer_size);
|
|
|
|
}
|
2013-02-13 12:12:19 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 08:07:57 +00:00
|
|
|
SHADER* ProgramShaderCache::SetShader(PrimitiveType primitive_type,
|
|
|
|
const GLVertexFormat* vertex_format)
|
2013-02-13 12:12:19 +00:00
|
|
|
{
|
2017-07-27 10:52:20 +00:00
|
|
|
if (g_ActiveConfig.bDisableSpecializedShaders)
|
2017-07-20 05:25:29 +00:00
|
|
|
return SetUberShader(primitive_type, vertex_format);
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
SHADERUID uid;
|
2017-07-20 05:25:29 +00:00
|
|
|
std::memset(&uid, 0, sizeof(uid));
|
|
|
|
uid.puid = GetPixelShaderUid();
|
|
|
|
uid.vuid = GetVertexShaderUid();
|
|
|
|
uid.guid = GetGeometryShaderUid(primitive_type);
|
2017-09-05 13:33:15 +00:00
|
|
|
ClearUnusedPixelShaderUidBits(APIType::OpenGL, &uid.puid);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Check if the shader is already set
|
2017-07-20 05:25:29 +00:00
|
|
|
if (last_entry && uid == last_uid)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
last_entry->shader.Bind();
|
|
|
|
BindVertexFormat(vertex_format);
|
|
|
|
return &last_entry->shader;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if shader is already in cache
|
2017-07-20 05:25:29 +00:00
|
|
|
auto iter = pshaders.find(uid);
|
2016-06-24 08:43:46 +00:00
|
|
|
if (iter != pshaders.end())
|
|
|
|
{
|
|
|
|
PCacheEntry* entry = &iter->second;
|
2017-07-20 05:25:29 +00:00
|
|
|
if (entry->pending)
|
|
|
|
return SetUberShader(primitive_type, vertex_format);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
last_uid = uid;
|
|
|
|
last_entry = entry;
|
|
|
|
BindVertexFormat(vertex_format);
|
2016-06-24 08:43:46 +00:00
|
|
|
last_entry->shader.Bind();
|
|
|
|
return &last_entry->shader;
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
// Compile the new shader program.
|
2016-06-24 08:43:46 +00:00
|
|
|
PCacheEntry& newentry = pshaders[uid];
|
2017-07-20 05:25:29 +00:00
|
|
|
newentry.in_cache = false;
|
|
|
|
newentry.pending = false;
|
|
|
|
|
|
|
|
// Can we background compile this shader? Requires background shader compiling to be enabled,
|
|
|
|
// and all ubershaders to have been successfully compiled.
|
|
|
|
if (g_ActiveConfig.CanBackgroundCompileShaders() && !ubershaders.empty() && s_async_compiler)
|
|
|
|
{
|
|
|
|
newentry.pending = true;
|
|
|
|
s_async_compiler->QueueWorkItem(s_async_compiler->CreateWorkItem<ShaderCompileWorkItem>(uid));
|
|
|
|
return SetUberShader(primitive_type, vertex_format);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Synchronous shader compiling.
|
|
|
|
ShaderHostConfig host_config = ShaderHostConfig::GetCurrent();
|
2017-07-31 13:21:38 +00:00
|
|
|
ShaderCode vcode = GenerateVertexShaderCode(APIType::OpenGL, host_config, uid.vuid.GetUidData());
|
|
|
|
ShaderCode pcode = GeneratePixelShaderCode(APIType::OpenGL, host_config, uid.puid.GetUidData());
|
2017-07-20 05:25:29 +00:00
|
|
|
ShaderCode gcode;
|
|
|
|
if (g_ActiveConfig.backend_info.bSupportsGeometryShaders &&
|
|
|
|
!uid.guid.GetUidData()->IsPassthrough())
|
|
|
|
gcode = GenerateGeometryShaderCode(APIType::OpenGL, host_config, uid.guid.GetUidData());
|
|
|
|
|
|
|
|
if (!CompileShader(newentry.shader, vcode.GetBuffer(), pcode.GetBuffer(), gcode.GetBuffer()))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
INCSTAT(stats.numPixelShadersCreated);
|
|
|
|
SETSTAT(stats.numPixelShadersAlive, pshaders.size());
|
|
|
|
|
|
|
|
last_uid = uid;
|
2016-06-24 08:43:46 +00:00
|
|
|
last_entry = &newentry;
|
2017-07-20 05:25:29 +00:00
|
|
|
BindVertexFormat(vertex_format);
|
|
|
|
last_entry->shader.Bind();
|
|
|
|
return &last_entry->shader;
|
|
|
|
}
|
|
|
|
|
2017-04-30 08:07:57 +00:00
|
|
|
SHADER* ProgramShaderCache::SetUberShader(PrimitiveType primitive_type,
|
|
|
|
const GLVertexFormat* vertex_format)
|
2017-07-20 05:25:29 +00:00
|
|
|
{
|
|
|
|
UBERSHADERUID uid;
|
|
|
|
std::memset(&uid, 0, sizeof(uid));
|
|
|
|
uid.puid = UberShader::GetPixelShaderUid();
|
|
|
|
uid.vuid = UberShader::GetVertexShaderUid();
|
|
|
|
uid.guid = GetGeometryShaderUid(primitive_type);
|
2017-09-05 13:33:15 +00:00
|
|
|
UberShader::ClearUnusedPixelShaderUidBits(APIType::OpenGL, &uid.puid);
|
2017-07-20 05:25:29 +00:00
|
|
|
|
|
|
|
// We need to use the ubershader vertex format with all attributes enabled.
|
|
|
|
// Otherwise, the NV driver can generate variants for the vertex shaders.
|
|
|
|
const GLVertexFormat* uber_vertex_format = static_cast<const GLVertexFormat*>(
|
|
|
|
VertexLoaderManager::GetUberVertexFormat(vertex_format->GetVertexDeclaration()));
|
|
|
|
|
|
|
|
// Check if the shader is already set
|
|
|
|
if (last_uber_entry && last_uber_uid == uid)
|
|
|
|
{
|
|
|
|
BindVertexFormat(uber_vertex_format);
|
|
|
|
last_uber_entry->shader.Bind();
|
|
|
|
return &last_uber_entry->shader;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if shader is already in cache
|
|
|
|
auto iter = ubershaders.find(uid);
|
|
|
|
if (iter != ubershaders.end())
|
|
|
|
{
|
|
|
|
PCacheEntry* entry = &iter->second;
|
|
|
|
last_uber_uid = uid;
|
|
|
|
last_uber_entry = entry;
|
|
|
|
BindVertexFormat(uber_vertex_format);
|
|
|
|
last_uber_entry->shader.Bind();
|
|
|
|
return &last_uber_entry->shader;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make an entry in the table
|
|
|
|
PCacheEntry& newentry = ubershaders[uid];
|
|
|
|
newentry.in_cache = false;
|
|
|
|
newentry.pending = false;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 07:10:02 +00:00
|
|
|
ShaderHostConfig host_config = ShaderHostConfig::GetCurrent();
|
2017-07-20 05:25:29 +00:00
|
|
|
ShaderCode vcode =
|
|
|
|
UberShader::GenVertexShader(APIType::OpenGL, host_config, uid.vuid.GetUidData());
|
|
|
|
ShaderCode pcode =
|
|
|
|
UberShader::GenPixelShader(APIType::OpenGL, host_config, uid.puid.GetUidData());
|
2016-06-24 08:43:46 +00:00
|
|
|
ShaderCode gcode;
|
|
|
|
if (g_ActiveConfig.backend_info.bSupportsGeometryShaders &&
|
|
|
|
!uid.guid.GetUidData()->IsPassthrough())
|
2017-07-20 05:25:29 +00:00
|
|
|
{
|
2017-07-20 07:10:02 +00:00
|
|
|
gcode = GenerateGeometryShaderCode(APIType::OpenGL, host_config, uid.guid.GetUidData());
|
2017-07-20 05:25:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!CompileShader(newentry.shader, vcode.GetBuffer(), pcode.GetBuffer(), gcode.GetBuffer()))
|
|
|
|
{
|
|
|
|
GFX_DEBUGGER_PAUSE_AT(NEXT_ERROR, true);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
last_uber_uid = uid;
|
|
|
|
last_uber_entry = &newentry;
|
|
|
|
BindVertexFormat(uber_vertex_format);
|
|
|
|
last_uber_entry->shader.Bind();
|
|
|
|
return &last_uber_entry->shader;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProgramShaderCache::CompileShader(SHADER& shader, const std::string& vcode,
|
|
|
|
const std::string& pcode, const std::string& gcode)
|
|
|
|
{
|
2013-02-13 12:12:19 +00:00
|
|
|
#if defined(_DEBUG) || defined(DEBUGFAST)
|
2016-06-24 08:43:46 +00:00
|
|
|
if (g_ActiveConfig.iLog & CONF_SAVESHADERS)
|
|
|
|
{
|
|
|
|
static int counter = 0;
|
|
|
|
std::string filename =
|
|
|
|
StringFromFormat("%svs_%04i.txt", File::GetUserPath(D_DUMP_IDX).c_str(), counter++);
|
2017-07-20 05:25:29 +00:00
|
|
|
SaveData(filename, vcode.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
filename = StringFromFormat("%sps_%04i.txt", File::GetUserPath(D_DUMP_IDX).c_str(), counter++);
|
2017-07-20 05:25:29 +00:00
|
|
|
SaveData(filename, pcode.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
if (!gcode.empty())
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
filename =
|
|
|
|
StringFromFormat("%sgs_%04i.txt", File::GetUserPath(D_DUMP_IDX).c_str(), counter++);
|
2017-07-20 05:25:29 +00:00
|
|
|
SaveData(filename, gcode.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
}
|
2013-02-13 12:12:19 +00:00
|
|
|
#endif
|
2011-12-26 05:15:54 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
shader.vsid = CompileSingleShader(GL_VERTEX_SHADER, vcode);
|
|
|
|
shader.psid = CompileSingleShader(GL_FRAGMENT_SHADER, pcode);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Optional geometry shader
|
2017-07-20 05:25:29 +00:00
|
|
|
shader.gsid = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
if (!gcode.empty())
|
2017-07-20 05:25:29 +00:00
|
|
|
shader.gsid = CompileSingleShader(GL_GEOMETRY_SHADER, gcode);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
if (!shader.vsid || !shader.psid || (!gcode.empty() && !shader.gsid))
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
shader.Destroy();
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
// Create and link the program.
|
|
|
|
shader.glprogid = glCreateProgram();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
glAttachShader(shader.glprogid, shader.vsid);
|
|
|
|
glAttachShader(shader.glprogid, shader.psid);
|
|
|
|
if (shader.gsid)
|
|
|
|
glAttachShader(shader.glprogid, shader.gsid);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
if (g_ogl_config.bSupportsGLSLCache)
|
2017-07-20 05:25:29 +00:00
|
|
|
glProgramParameteri(shader.glprogid, GL_PROGRAM_BINARY_RETRIEVABLE_HINT, GL_TRUE);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-11-27 08:14:56 +00:00
|
|
|
shader.SetProgramBindings(false);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
glLinkProgram(shader.glprogid);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
if (!CheckProgramLinkResult(shader.glprogid, vcode, pcode, gcode))
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
// Don't try to use this shader
|
2017-07-20 05:25:29 +00:00
|
|
|
shader.Destroy();
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
// For drivers that don't support binding layout, we need to bind it here.
|
2016-06-24 08:43:46 +00:00
|
|
|
shader.SetProgramVariables();
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
// Original shaders aren't needed any more.
|
|
|
|
shader.DestroyShaders();
|
2016-06-24 08:43:46 +00:00
|
|
|
return true;
|
2011-12-26 05:15:54 +00:00
|
|
|
}
|
|
|
|
|
2016-11-27 08:14:56 +00:00
|
|
|
bool ProgramShaderCache::CompileComputeShader(SHADER& shader, const std::string& code)
|
|
|
|
{
|
|
|
|
// We need to enable GL_ARB_compute_shader for drivers that support the extension,
|
|
|
|
// but not GLSL 4.3. Mesa is one example.
|
|
|
|
std::string header;
|
|
|
|
if (g_ActiveConfig.backend_info.bSupportsComputeShaders &&
|
|
|
|
g_ogl_config.eSupportedGLSLVersion < GLSL_430)
|
|
|
|
{
|
|
|
|
header = "#extension GL_ARB_compute_shader : enable\n";
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
std::string full_code = header + code;
|
|
|
|
GLuint shader_id = CompileSingleShader(GL_COMPUTE_SHADER, full_code);
|
2016-11-27 08:14:56 +00:00
|
|
|
if (!shader_id)
|
|
|
|
return false;
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
shader.glprogid = glCreateProgram();
|
|
|
|
glAttachShader(shader.glprogid, shader_id);
|
2016-11-27 08:14:56 +00:00
|
|
|
shader.SetProgramBindings(true);
|
2017-07-20 05:25:29 +00:00
|
|
|
glLinkProgram(shader.glprogid);
|
2016-11-27 08:14:56 +00:00
|
|
|
|
|
|
|
// original shaders aren't needed any more
|
|
|
|
glDeleteShader(shader_id);
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
if (!CheckProgramLinkResult(shader.glprogid, full_code, "", ""))
|
2016-11-27 08:14:56 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
shader.Destroy();
|
2016-11-27 08:14:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
shader.SetProgramVariables();
|
2016-11-27 08:14:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
GLuint ProgramShaderCache::CompileSingleShader(GLenum type, const std::string& code)
|
2011-12-26 05:15:54 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
GLuint result = glCreateShader(type);
|
|
|
|
|
|
|
|
const char* src[] = {s_glsl_header.c_str(), code.c_str()};
|
|
|
|
|
|
|
|
glShaderSource(result, 2, src, nullptr);
|
|
|
|
glCompileShader(result);
|
2017-07-20 05:25:29 +00:00
|
|
|
|
|
|
|
if (!CheckShaderCompileResult(result, type, code))
|
|
|
|
{
|
|
|
|
// Don't try to use this shader
|
|
|
|
glDeleteShader(result);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProgramShaderCache::CheckShaderCompileResult(GLuint id, GLenum type, const std::string& code)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
GLint compileStatus;
|
2017-07-20 05:25:29 +00:00
|
|
|
glGetShaderiv(id, GL_COMPILE_STATUS, &compileStatus);
|
2016-06-24 08:43:46 +00:00
|
|
|
GLsizei length = 0;
|
2017-07-20 05:25:29 +00:00
|
|
|
glGetShaderiv(id, GL_INFO_LOG_LENGTH, &length);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
if (compileStatus != GL_TRUE || (length > 1 && DEBUG_GLSL))
|
|
|
|
{
|
2016-11-27 08:14:56 +00:00
|
|
|
std::string info_log;
|
|
|
|
info_log.resize(length);
|
2017-07-20 05:25:29 +00:00
|
|
|
glGetShaderInfoLog(id, length, &length, &info_log[0]);
|
2016-11-27 08:14:56 +00:00
|
|
|
|
|
|
|
const char* prefix = "";
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case GL_VERTEX_SHADER:
|
|
|
|
prefix = "vs";
|
|
|
|
break;
|
|
|
|
case GL_GEOMETRY_SHADER:
|
|
|
|
prefix = "gs";
|
|
|
|
break;
|
|
|
|
case GL_FRAGMENT_SHADER:
|
|
|
|
prefix = "ps";
|
|
|
|
break;
|
|
|
|
case GL_COMPUTE_SHADER:
|
|
|
|
prefix = "cs";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ERROR_LOG(VIDEO, "%s Shader info log:\n%s", prefix, info_log.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
std::string filename = StringFromFormat(
|
2016-11-27 08:14:56 +00:00
|
|
|
"%sbad_%s_%04i.txt", File::GetUserPath(D_DUMP_IDX).c_str(), prefix, num_failures++);
|
2016-06-24 08:43:46 +00:00
|
|
|
std::ofstream file;
|
2017-01-15 21:46:43 +00:00
|
|
|
File::OpenFStream(file, filename, std::ios_base::out);
|
2016-11-27 08:14:56 +00:00
|
|
|
file << s_glsl_header << code << info_log;
|
2016-06-24 08:43:46 +00:00
|
|
|
file.close();
|
|
|
|
|
|
|
|
if (compileStatus != GL_TRUE)
|
|
|
|
{
|
|
|
|
PanicAlert("Failed to compile %s shader: %s\n"
|
|
|
|
"Debug info (%s, %s, %s):\n%s",
|
2016-11-27 08:14:56 +00:00
|
|
|
prefix, filename.c_str(), g_ogl_config.gl_vendor, g_ogl_config.gl_renderer,
|
|
|
|
g_ogl_config.gl_version, info_log.c_str());
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (compileStatus != GL_TRUE)
|
|
|
|
{
|
|
|
|
// Compile failed
|
|
|
|
ERROR_LOG(VIDEO, "Shader compilation failed; see info log");
|
2017-07-20 05:25:29 +00:00
|
|
|
return false;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
return true;
|
2011-12-26 05:15:54 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
bool ProgramShaderCache::CheckProgramLinkResult(GLuint id, const std::string& vcode,
|
|
|
|
const std::string& pcode, const std::string& gcode)
|
2011-12-26 05:15:54 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
GLint linkStatus;
|
|
|
|
glGetProgramiv(id, GL_LINK_STATUS, &linkStatus);
|
|
|
|
GLsizei length = 0;
|
|
|
|
glGetProgramiv(id, GL_INFO_LOG_LENGTH, &length);
|
|
|
|
if (linkStatus != GL_TRUE || (length > 1 && DEBUG_GLSL))
|
|
|
|
{
|
|
|
|
std::string info_log;
|
|
|
|
info_log.resize(length);
|
|
|
|
glGetProgramInfoLog(id, length, &length, &info_log[0]);
|
|
|
|
ERROR_LOG(VIDEO, "Program info log:\n%s", info_log.c_str());
|
|
|
|
|
|
|
|
std::string filename =
|
|
|
|
StringFromFormat("%sbad_p_%d.txt", File::GetUserPath(D_DUMP_IDX).c_str(), num_failures++);
|
|
|
|
std::ofstream file;
|
|
|
|
File::OpenFStream(file, filename, std::ios_base::out);
|
|
|
|
file << s_glsl_header << vcode << s_glsl_header << pcode;
|
|
|
|
if (!gcode.empty())
|
|
|
|
file << s_glsl_header << gcode;
|
|
|
|
file << info_log;
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
if (linkStatus != GL_TRUE)
|
|
|
|
{
|
|
|
|
PanicAlert("Failed to link shaders: %s\n"
|
|
|
|
"Debug info (%s, %s, %s):\n%s",
|
|
|
|
filename.c_str(), g_ogl_config.gl_vendor, g_ogl_config.gl_renderer,
|
|
|
|
g_ogl_config.gl_version, info_log.c_str());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2013-03-29 13:54:44 +00:00
|
|
|
}
|
2013-02-13 12:12:19 +00:00
|
|
|
|
2014-08-15 18:09:53 +00:00
|
|
|
ProgramShaderCache::PCacheEntry ProgramShaderCache::GetShaderProgram()
|
2011-12-26 05:15:54 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return *last_entry;
|
2011-12-26 05:15:54 +00:00
|
|
|
}
|
|
|
|
|
2014-08-15 18:09:53 +00:00
|
|
|
void ProgramShaderCache::Init()
|
2011-12-26 05:15:54 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// We have to get the UBO alignment here because
|
|
|
|
// if we generate a buffer that isn't aligned
|
|
|
|
// then the UBO will fail.
|
|
|
|
glGetIntegerv(GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT, &s_ubo_align);
|
|
|
|
|
2016-11-27 10:56:22 +00:00
|
|
|
s_ubo_buffer_size =
|
|
|
|
static_cast<u32>(Common::AlignUp(sizeof(PixelShaderConstants), s_ubo_align) +
|
|
|
|
Common::AlignUp(sizeof(VertexShaderConstants), s_ubo_align) +
|
|
|
|
Common::AlignUp(sizeof(GeometryShaderConstants), s_ubo_align));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// We multiply by *4*4 because we need to get down to basic machine units.
|
|
|
|
// So multiply by four to get how many floats we have from vec4s
|
|
|
|
// Then once more to get bytes
|
|
|
|
s_buffer = StreamBuffer::Create(GL_UNIFORM_BUFFER, UBO_LENGTH);
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
// The GPU shader code appears to be context-specific on Mesa/i965.
|
|
|
|
// This means that if we compiled the ubershaders asynchronously, they will be recompiled
|
|
|
|
// on the main thread the first time they are used, causing stutter. Nouveau has been
|
|
|
|
// reported to crash if draw calls are invoked on the shared context threads. For now,
|
|
|
|
// disable asynchronous compilation on Mesa.
|
2017-07-27 03:15:38 +00:00
|
|
|
if (!DriverDetails::HasBug(DriverDetails::BUG_SHARED_CONTEXT_SHADER_COMPILATION))
|
2017-07-20 05:25:29 +00:00
|
|
|
s_async_compiler = std::make_unique<SharedContextAsyncShaderCompiler>();
|
|
|
|
|
2017-02-19 11:02:47 +00:00
|
|
|
// Read our shader cache, only if supported and enabled
|
|
|
|
if (g_ogl_config.bSupportsGLSLCache && g_ActiveConfig.bShaderCache)
|
2017-06-24 09:20:34 +00:00
|
|
|
LoadProgramBinaries();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-24 09:20:34 +00:00
|
|
|
CreateHeader();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-24 09:20:34 +00:00
|
|
|
CurrentProgram = 0;
|
|
|
|
last_entry = nullptr;
|
2017-07-20 05:25:29 +00:00
|
|
|
last_uber_entry = nullptr;
|
|
|
|
|
|
|
|
if (g_ActiveConfig.CanPrecompileUberShaders())
|
2017-07-27 03:15:38 +00:00
|
|
|
{
|
|
|
|
if (s_async_compiler)
|
|
|
|
s_async_compiler->ResizeWorkerThreads(g_ActiveConfig.GetShaderPrecompilerThreads());
|
2017-07-20 05:25:29 +00:00
|
|
|
PrecompileUberShaders();
|
2017-07-27 03:15:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (s_async_compiler)
|
|
|
|
{
|
|
|
|
// No point using the async compiler without workers.
|
|
|
|
s_async_compiler->ResizeWorkerThreads(g_ActiveConfig.GetShaderCompilerThreads());
|
|
|
|
if (!s_async_compiler->HasWorkerThreads())
|
|
|
|
s_async_compiler.reset();
|
|
|
|
}
|
2017-07-20 05:25:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::RetrieveAsyncShaders()
|
|
|
|
{
|
|
|
|
if (s_async_compiler)
|
|
|
|
s_async_compiler->RetrieveWorkItems();
|
2017-06-24 09:20:34 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-24 09:20:34 +00:00
|
|
|
void ProgramShaderCache::Reload()
|
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
if (s_async_compiler)
|
|
|
|
{
|
|
|
|
s_async_compiler->WaitUntilCompletion();
|
|
|
|
s_async_compiler->RetrieveWorkItems();
|
|
|
|
}
|
|
|
|
|
2017-06-24 09:20:34 +00:00
|
|
|
const bool use_cache = g_ogl_config.bSupportsGLSLCache && g_ActiveConfig.bShaderCache;
|
|
|
|
if (use_cache)
|
|
|
|
SaveProgramBinaries();
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
s_program_disk_cache.Close();
|
|
|
|
s_uber_program_disk_cache.Close();
|
2017-06-24 09:20:34 +00:00
|
|
|
DestroyShaders();
|
|
|
|
|
|
|
|
if (use_cache)
|
|
|
|
LoadProgramBinaries();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
if (g_ActiveConfig.CanPrecompileUberShaders())
|
|
|
|
PrecompileUberShaders();
|
|
|
|
|
|
|
|
InvalidateVertexFormat();
|
2016-06-24 08:43:46 +00:00
|
|
|
CurrentProgram = 0;
|
|
|
|
last_entry = nullptr;
|
2017-07-20 05:25:29 +00:00
|
|
|
last_uber_entry = nullptr;
|
2017-06-24 09:20:34 +00:00
|
|
|
last_uid = {};
|
2017-07-20 05:25:29 +00:00
|
|
|
last_uber_uid = {};
|
2011-12-26 05:15:54 +00:00
|
|
|
}
|
|
|
|
|
2014-08-15 18:09:53 +00:00
|
|
|
void ProgramShaderCache::Shutdown()
|
2011-12-26 05:15:54 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
if (s_async_compiler)
|
|
|
|
{
|
|
|
|
s_async_compiler->WaitUntilCompletion();
|
|
|
|
s_async_compiler->StopWorkerThreads();
|
|
|
|
s_async_compiler->RetrieveWorkItems();
|
|
|
|
s_async_compiler.reset();
|
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// store all shaders in cache on disk
|
2017-06-24 09:20:34 +00:00
|
|
|
if (g_ogl_config.bSupportsGLSLCache && g_ActiveConfig.bShaderCache)
|
|
|
|
SaveProgramBinaries();
|
2017-07-20 05:25:29 +00:00
|
|
|
s_program_disk_cache.Close();
|
|
|
|
s_uber_program_disk_cache.Close();
|
2017-06-24 09:20:34 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
InvalidateVertexFormat();
|
2017-06-24 09:20:34 +00:00
|
|
|
DestroyShaders();
|
|
|
|
s_buffer.reset();
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
void ProgramShaderCache::BindVertexFormat(const GLVertexFormat* vertex_format)
|
|
|
|
{
|
|
|
|
u32 new_VAO = vertex_format ? vertex_format->VAO : 0;
|
|
|
|
if (s_last_VAO == new_VAO)
|
|
|
|
return;
|
|
|
|
|
|
|
|
glBindVertexArray(new_VAO);
|
|
|
|
s_last_VAO = new_VAO;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::InvalidateVertexFormat()
|
|
|
|
{
|
|
|
|
s_last_VAO = INVALID_VAO;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::BindLastVertexFormat()
|
|
|
|
{
|
|
|
|
if (s_last_VAO != INVALID_VAO)
|
|
|
|
glBindVertexArray(s_last_VAO);
|
|
|
|
else
|
|
|
|
glBindVertexArray(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLuint ProgramShaderCache::CreateProgramFromBinary(const u8* value, u32 value_size)
|
|
|
|
{
|
|
|
|
const u8* binary = value + sizeof(GLenum);
|
|
|
|
GLint binary_size = value_size - sizeof(GLenum);
|
|
|
|
GLenum prog_format;
|
|
|
|
std::memcpy(&prog_format, value, sizeof(GLenum));
|
|
|
|
|
|
|
|
GLuint progid = glCreateProgram();
|
|
|
|
glProgramBinary(progid, prog_format, binary, binary_size);
|
|
|
|
|
|
|
|
GLint success;
|
|
|
|
glGetProgramiv(progid, GL_LINK_STATUS, &success);
|
|
|
|
if (!success)
|
|
|
|
{
|
|
|
|
glDeleteProgram(progid);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return progid;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProgramShaderCache::CreateCacheEntryFromBinary(PCacheEntry* entry, const u8* value,
|
|
|
|
u32 value_size)
|
|
|
|
{
|
|
|
|
entry->in_cache = true;
|
|
|
|
entry->pending = false;
|
|
|
|
entry->shader.glprogid = CreateProgramFromBinary(value, value_size);
|
|
|
|
if (entry->shader.glprogid == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
entry->shader.SetProgramVariables();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-06-24 09:20:34 +00:00
|
|
|
void ProgramShaderCache::LoadProgramBinaries()
|
|
|
|
{
|
|
|
|
GLint Supported;
|
|
|
|
glGetIntegerv(GL_NUM_PROGRAM_BINARY_FORMATS, &Supported);
|
|
|
|
if (!Supported)
|
|
|
|
{
|
|
|
|
ERROR_LOG(VIDEO, "GL_ARB_get_program_binary is supported, but no binary format is known. So "
|
|
|
|
"disable shader cache.");
|
|
|
|
g_ogl_config.bSupportsGLSLCache = false;
|
|
|
|
}
|
|
|
|
else
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
// Load game-specific shaders.
|
2017-06-24 09:20:34 +00:00
|
|
|
std::string cache_filename =
|
2017-07-20 07:10:02 +00:00
|
|
|
GetDiskShaderCacheFileName(APIType::OpenGL, "ProgramBinaries", true, true);
|
2017-07-20 05:25:29 +00:00
|
|
|
ProgramShaderCacheInserter<SHADERUID> inserter(pshaders);
|
|
|
|
s_program_disk_cache.OpenAndRead(cache_filename, inserter);
|
|
|
|
|
|
|
|
// Load global ubershaders.
|
|
|
|
cache_filename =
|
|
|
|
GetDiskShaderCacheFileName(APIType::OpenGL, "UberProgramBinaries", false, true);
|
|
|
|
ProgramShaderCacheInserter<UBERSHADERUID> uber_inserter(ubershaders);
|
|
|
|
s_uber_program_disk_cache.OpenAndRead(cache_filename, uber_inserter);
|
2017-06-24 09:20:34 +00:00
|
|
|
}
|
|
|
|
SETSTAT(stats.numPixelShadersAlive, pshaders.size());
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
static bool GetProgramBinary(const ProgramShaderCache::PCacheEntry& entry, std::vector<u8>& data)
|
2017-06-24 09:20:34 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
// Clear any prior error code
|
|
|
|
glGetError();
|
|
|
|
|
|
|
|
GLint link_status = GL_FALSE, delete_status = GL_TRUE, binary_size = 0;
|
|
|
|
glGetProgramiv(entry.shader.glprogid, GL_LINK_STATUS, &link_status);
|
|
|
|
glGetProgramiv(entry.shader.glprogid, GL_DELETE_STATUS, &delete_status);
|
|
|
|
glGetProgramiv(entry.shader.glprogid, GL_PROGRAM_BINARY_LENGTH, &binary_size);
|
|
|
|
if (glGetError() != GL_NO_ERROR || link_status == GL_FALSE || delete_status == GL_TRUE ||
|
|
|
|
binary_size == 0)
|
2017-06-24 09:20:34 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-06-24 09:20:34 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
data.resize(binary_size + sizeof(GLenum));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
GLsizei length = binary_size;
|
|
|
|
GLenum prog_format;
|
|
|
|
glGetProgramBinary(entry.shader.glprogid, binary_size, &length, &prog_format,
|
|
|
|
&data[sizeof(GLenum)]);
|
|
|
|
if (glGetError() != GL_NO_ERROR)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::memcpy(&data[0], &prog_format, sizeof(prog_format));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename CacheMapType, typename DiskCacheType>
|
|
|
|
static void SaveProgramBinaryMap(CacheMapType& program_map, DiskCacheType& disk_cache)
|
|
|
|
{
|
|
|
|
std::vector<u8> binary_data;
|
|
|
|
for (auto& entry : program_map)
|
|
|
|
{
|
|
|
|
if (entry.second.in_cache || entry.second.pending)
|
2017-06-24 09:20:34 +00:00
|
|
|
continue;
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
// Entry is now in cache (even if it fails, we don't want to try to save it again).
|
|
|
|
entry.second.in_cache = true;
|
|
|
|
if (!GetProgramBinary(entry.second, binary_data))
|
2017-06-24 09:20:34 +00:00
|
|
|
continue;
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
disk_cache.Append(entry.first, &binary_data[0], static_cast<u32>(binary_data.size()));
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
disk_cache.Sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::SaveProgramBinaries()
|
|
|
|
{
|
|
|
|
SaveProgramBinaryMap(pshaders, s_program_disk_cache);
|
|
|
|
SaveProgramBinaryMap(ubershaders, s_uber_program_disk_cache);
|
2017-06-24 09:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::DestroyShaders()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
glUseProgram(0);
|
|
|
|
|
|
|
|
for (auto& entry : pshaders)
|
|
|
|
entry.second.Destroy();
|
|
|
|
pshaders.clear();
|
2017-07-20 05:25:29 +00:00
|
|
|
|
|
|
|
for (auto& entry : ubershaders)
|
|
|
|
entry.second.Destroy();
|
|
|
|
ubershaders.clear();
|
2011-12-01 03:00:21 +00:00
|
|
|
}
|
|
|
|
|
2014-08-15 18:09:53 +00:00
|
|
|
void ProgramShaderCache::CreateHeader()
|
2013-02-13 20:34:48 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
GLSL_VERSION v = g_ogl_config.eSupportedGLSLVersion;
|
|
|
|
bool is_glsles = v >= GLSLES_300;
|
|
|
|
std::string SupportedESPointSize;
|
|
|
|
std::string SupportedESTextureBuffer;
|
|
|
|
switch (g_ogl_config.SupportedESPointSize)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
SupportedESPointSize = "#extension GL_OES_geometry_point_size : enable";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
SupportedESPointSize = "#extension GL_EXT_geometry_point_size : enable";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SupportedESPointSize = "";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (g_ogl_config.SupportedESTextureBuffer)
|
|
|
|
{
|
|
|
|
case ES_TEXBUF_TYPE::TEXBUF_EXT:
|
|
|
|
SupportedESTextureBuffer = "#extension GL_EXT_texture_buffer : enable";
|
|
|
|
break;
|
|
|
|
case ES_TEXBUF_TYPE::TEXBUF_OES:
|
|
|
|
SupportedESTextureBuffer = "#extension GL_OES_texture_buffer : enable";
|
|
|
|
break;
|
|
|
|
case ES_TEXBUF_TYPE::TEXBUF_CORE:
|
|
|
|
case ES_TEXBUF_TYPE::TEXBUF_NONE:
|
|
|
|
SupportedESTextureBuffer = "";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string earlyz_string = "";
|
|
|
|
if (g_ActiveConfig.backend_info.bSupportsEarlyZ)
|
|
|
|
{
|
2016-11-27 08:14:56 +00:00
|
|
|
if (g_ogl_config.bSupportsImageLoadStore)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
earlyz_string = "#define FORCE_EARLY_Z layout(early_fragment_tests) in\n";
|
|
|
|
}
|
|
|
|
else if (g_ogl_config.bSupportsConservativeDepth)
|
|
|
|
{
|
|
|
|
// See PixelShaderGen for details about this fallback.
|
|
|
|
earlyz_string = "#define FORCE_EARLY_Z layout(depth_unchanged) out float gl_FragDepth\n";
|
|
|
|
earlyz_string += "#extension GL_ARB_conservative_depth : enable\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-26 05:44:39 +00:00
|
|
|
std::string framebuffer_fetch_string;
|
|
|
|
switch (g_ogl_config.SupportedFramebufferFetch)
|
|
|
|
{
|
|
|
|
case ES_FB_FETCH_TYPE::FB_FETCH_EXT:
|
|
|
|
framebuffer_fetch_string = "#extension GL_EXT_shader_framebuffer_fetch: enable\n"
|
|
|
|
"#define FB_FETCH_VALUE ocol0\n"
|
|
|
|
"#define FRAGMENT_INOUT inout";
|
|
|
|
break;
|
|
|
|
case ES_FB_FETCH_TYPE::FB_FETCH_ARM:
|
|
|
|
framebuffer_fetch_string = "#extension GL_ARM_shader_framebuffer_fetch: enable\n"
|
|
|
|
"#define FB_FETCH_VALUE gl_LastFragColorARM\n"
|
|
|
|
"#define FRAGMENT_INOUT out";
|
|
|
|
break;
|
|
|
|
case ES_FB_FETCH_TYPE::FB_FETCH_NONE:
|
|
|
|
framebuffer_fetch_string = "";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
s_glsl_header = StringFromFormat(
|
|
|
|
"%s\n"
|
|
|
|
"%s\n" // ubo
|
|
|
|
"%s\n" // early-z
|
|
|
|
"%s\n" // 420pack
|
|
|
|
"%s\n" // msaa
|
2016-08-12 14:40:18 +00:00
|
|
|
"%s\n" // Input/output/sampler binding
|
|
|
|
"%s\n" // Varying location
|
2016-06-24 08:43:46 +00:00
|
|
|
"%s\n" // storage buffer
|
|
|
|
"%s\n" // shader5
|
|
|
|
"%s\n" // SSAA
|
|
|
|
"%s\n" // Geometry point size
|
|
|
|
"%s\n" // AEP
|
|
|
|
"%s\n" // texture buffer
|
|
|
|
"%s\n" // ES texture buffer
|
|
|
|
"%s\n" // ES dual source blend
|
2016-11-27 08:14:56 +00:00
|
|
|
"%s\n" // shader image load store
|
2017-10-26 05:44:39 +00:00
|
|
|
"%s\n" // shader framebuffer fetch
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Precision defines for GLSL ES
|
|
|
|
"%s\n"
|
|
|
|
"%s\n"
|
|
|
|
"%s\n"
|
|
|
|
"%s\n"
|
|
|
|
"%s\n"
|
2016-11-27 08:14:56 +00:00
|
|
|
"%s\n"
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Silly differences
|
|
|
|
"#define float2 vec2\n"
|
|
|
|
"#define float3 vec3\n"
|
|
|
|
"#define float4 vec4\n"
|
|
|
|
"#define uint2 uvec2\n"
|
|
|
|
"#define uint3 uvec3\n"
|
|
|
|
"#define uint4 uvec4\n"
|
|
|
|
"#define int2 ivec2\n"
|
|
|
|
"#define int3 ivec3\n"
|
|
|
|
"#define int4 ivec4\n"
|
|
|
|
|
|
|
|
// hlsl to glsl function translation
|
|
|
|
"#define frac fract\n"
|
|
|
|
"#define lerp mix\n"
|
|
|
|
|
|
|
|
,
|
|
|
|
GetGLSLVersionString().c_str(),
|
|
|
|
v < GLSL_140 ? "#extension GL_ARB_uniform_buffer_object : enable" : "", earlyz_string.c_str(),
|
|
|
|
(g_ActiveConfig.backend_info.bSupportsBindingLayout && v < GLSLES_310) ?
|
|
|
|
"#extension GL_ARB_shading_language_420pack : enable" :
|
|
|
|
"",
|
|
|
|
(g_ogl_config.bSupportsMSAA && v < GLSL_150) ?
|
|
|
|
"#extension GL_ARB_texture_multisample : enable" :
|
|
|
|
"",
|
2016-08-12 14:40:18 +00:00
|
|
|
// Attribute and fragment output bindings are still done via glBindAttribLocation and
|
|
|
|
// glBindFragDataLocation. In the future this could be moved to the layout qualifier
|
|
|
|
// in GLSL, but requires verification of GL_ARB_explicit_attrib_location.
|
2016-06-24 08:43:46 +00:00
|
|
|
g_ActiveConfig.backend_info.bSupportsBindingLayout ?
|
2016-08-12 14:40:18 +00:00
|
|
|
"#define ATTRIBUTE_LOCATION(x)\n"
|
|
|
|
"#define FRAGMENT_OUTPUT_LOCATION(x)\n"
|
|
|
|
"#define FRAGMENT_OUTPUT_LOCATION_INDEXED(x, y)\n"
|
|
|
|
"#define UBO_BINDING(packing, x) layout(packing, binding = x)\n"
|
|
|
|
"#define SAMPLER_BINDING(x) layout(binding = x)\n"
|
|
|
|
"#define SSBO_BINDING(x) layout(binding = x)\n" :
|
|
|
|
"#define ATTRIBUTE_LOCATION(x)\n"
|
|
|
|
"#define FRAGMENT_OUTPUT_LOCATION(x)\n"
|
|
|
|
"#define FRAGMENT_OUTPUT_LOCATION_INDEXED(x, y)\n"
|
|
|
|
"#define UBO_BINDING(packing, x) layout(packing)\n"
|
|
|
|
"#define SAMPLER_BINDING(x)\n",
|
|
|
|
// Input/output blocks are matched by name during program linking
|
|
|
|
"#define VARYING_LOCATION(x)\n",
|
2017-03-05 23:17:54 +00:00
|
|
|
!is_glsles && g_ActiveConfig.backend_info.bSupportsFragmentStoresAndAtomics ?
|
2016-06-24 08:43:46 +00:00
|
|
|
"#extension GL_ARB_shader_storage_buffer_object : enable" :
|
|
|
|
"",
|
|
|
|
v < GLSL_400 && g_ActiveConfig.backend_info.bSupportsGSInstancing ?
|
|
|
|
"#extension GL_ARB_gpu_shader5 : enable" :
|
|
|
|
"",
|
|
|
|
v < GLSL_400 && g_ActiveConfig.backend_info.bSupportsSSAA ?
|
|
|
|
"#extension GL_ARB_sample_shading : enable" :
|
|
|
|
"",
|
|
|
|
SupportedESPointSize.c_str(),
|
|
|
|
g_ogl_config.bSupportsAEP ? "#extension GL_ANDROID_extension_pack_es31a : enable" : "",
|
|
|
|
v < GLSL_140 && g_ActiveConfig.backend_info.bSupportsPaletteConversion ?
|
|
|
|
"#extension GL_ARB_texture_buffer_object : enable" :
|
|
|
|
"",
|
|
|
|
SupportedESTextureBuffer.c_str(),
|
|
|
|
is_glsles && g_ActiveConfig.backend_info.bSupportsDualSourceBlend ?
|
|
|
|
"#extension GL_EXT_blend_func_extended : enable" :
|
|
|
|
""
|
|
|
|
|
|
|
|
,
|
2016-11-27 08:14:56 +00:00
|
|
|
g_ogl_config.bSupportsImageLoadStore &&
|
|
|
|
((!is_glsles && v < GLSL_430) || (is_glsles && v < GLSLES_310)) ?
|
|
|
|
"#extension GL_ARB_shader_image_load_store : enable" :
|
|
|
|
"",
|
2017-10-26 05:44:39 +00:00
|
|
|
framebuffer_fetch_string.c_str(), is_glsles ? "precision highp float;" : "",
|
|
|
|
is_glsles ? "precision highp int;" : "", is_glsles ? "precision highp sampler2DArray;" : "",
|
2016-06-24 08:43:46 +00:00
|
|
|
(is_glsles && g_ActiveConfig.backend_info.bSupportsPaletteConversion) ?
|
|
|
|
"precision highp usamplerBuffer;" :
|
|
|
|
"",
|
2016-11-27 08:14:56 +00:00
|
|
|
v > GLSLES_300 ? "precision highp sampler2DMS;" : "",
|
|
|
|
v >= GLSLES_310 ? "precision highp image2DArray;" : "");
|
2013-02-13 20:34:48 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
void ProgramShaderCache::PrecompileUberShaders()
|
2013-02-13 12:12:19 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
UberShader::EnumerateVertexShaderUids([&](const UberShader::VertexShaderUid& vuid) {
|
|
|
|
UberShader::EnumeratePixelShaderUids([&](const UberShader::PixelShaderUid& puid) {
|
|
|
|
// UIDs must have compatible texgens, a mismatching combination will never be queried.
|
|
|
|
if (vuid.GetUidData()->num_texgens != puid.GetUidData()->num_texgens)
|
|
|
|
return;
|
|
|
|
|
|
|
|
EnumerateGeometryShaderUids([&](const GeometryShaderUid& guid) {
|
|
|
|
if (guid.GetUidData()->numTexGens != vuid.GetUidData()->num_texgens)
|
|
|
|
return;
|
|
|
|
|
|
|
|
UBERSHADERUID uid;
|
|
|
|
std::memcpy(&uid.vuid, &vuid, sizeof(uid.vuid));
|
|
|
|
std::memcpy(&uid.puid, &puid, sizeof(uid.puid));
|
|
|
|
std::memcpy(&uid.guid, &guid, sizeof(uid.guid));
|
|
|
|
|
|
|
|
// The ubershader may already exist if shader caching is enabled.
|
|
|
|
if (!success || ubershaders.find(uid) != ubershaders.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
PCacheEntry& entry = ubershaders[uid];
|
|
|
|
entry.in_cache = false;
|
|
|
|
entry.pending = false;
|
|
|
|
|
|
|
|
// Multi-context path?
|
|
|
|
if (s_async_compiler)
|
|
|
|
{
|
|
|
|
entry.pending = true;
|
|
|
|
s_async_compiler->QueueWorkItem(
|
|
|
|
s_async_compiler->CreateWorkItem<UberShaderCompileWorkItem>(uid));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ShaderHostConfig host_config = ShaderHostConfig::GetCurrent();
|
|
|
|
ShaderCode vcode =
|
|
|
|
UberShader::GenVertexShader(APIType::OpenGL, host_config, uid.vuid.GetUidData());
|
|
|
|
ShaderCode pcode =
|
|
|
|
UberShader::GenPixelShader(APIType::OpenGL, host_config, uid.puid.GetUidData());
|
|
|
|
ShaderCode gcode;
|
|
|
|
if (g_ActiveConfig.backend_info.bSupportsGeometryShaders &&
|
|
|
|
!uid.guid.GetUidData()->IsPassthrough())
|
|
|
|
{
|
|
|
|
GenerateGeometryShaderCode(APIType::OpenGL, host_config, uid.guid.GetUidData());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always background compile, even when it's not supported.
|
|
|
|
// This way hopefully the driver can still compile the shaders in parallel.
|
|
|
|
if (!CompileShader(entry.shader, vcode.GetBuffer(), pcode.GetBuffer(), gcode.GetBuffer()))
|
|
|
|
{
|
|
|
|
// Stop compiling shaders if any of them fail, no point continuing.
|
|
|
|
success = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
if (s_async_compiler)
|
|
|
|
{
|
|
|
|
s_async_compiler->WaitUntilCompletion([](size_t completed, size_t total) {
|
|
|
|
Host_UpdateProgressDialog(GetStringT("Compiling shaders...").c_str(),
|
|
|
|
static_cast<int>(completed), static_cast<int>(total));
|
|
|
|
});
|
|
|
|
s_async_compiler->RetrieveWorkItems();
|
|
|
|
Host_UpdateProgressDialog("", -1, -1);
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
if (!success)
|
|
|
|
{
|
|
|
|
PanicAlert("One or more ubershaders failed to compile. Disabling ubershaders.");
|
|
|
|
for (auto& it : ubershaders)
|
|
|
|
it.second.Destroy();
|
|
|
|
ubershaders.clear();
|
|
|
|
}
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
bool ProgramShaderCache::SharedContextAsyncShaderCompiler::WorkerThreadInitMainThread(void** param)
|
|
|
|
{
|
|
|
|
SharedContextData* ctx_data = new SharedContextData();
|
|
|
|
ctx_data->context = GLInterface->CreateSharedContext();
|
|
|
|
if (!ctx_data->context)
|
|
|
|
{
|
|
|
|
PanicAlert("Failed to create shared context for shader compiling.");
|
|
|
|
delete ctx_data;
|
|
|
|
return false;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
*param = ctx_data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProgramShaderCache::SharedContextAsyncShaderCompiler::WorkerThreadInitWorkerThread(void* param)
|
|
|
|
{
|
|
|
|
SharedContextData* ctx_data = reinterpret_cast<SharedContextData*>(param);
|
|
|
|
if (!ctx_data->context->MakeCurrent())
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
PanicAlert("Failed to make shared context current.");
|
|
|
|
ctx_data->context->Shutdown();
|
|
|
|
delete ctx_data;
|
|
|
|
return false;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2017-07-20 05:25:29 +00:00
|
|
|
|
|
|
|
CreatePrerenderArrays(ctx_data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::SharedContextAsyncShaderCompiler::WorkerThreadExit(void* param)
|
|
|
|
{
|
|
|
|
SharedContextData* ctx_data = reinterpret_cast<SharedContextData*>(param);
|
|
|
|
DestroyPrerenderArrays(ctx_data);
|
|
|
|
ctx_data->context->Shutdown();
|
|
|
|
delete ctx_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramShaderCache::ShaderCompileWorkItem::ShaderCompileWorkItem(const SHADERUID& uid)
|
|
|
|
{
|
|
|
|
std::memcpy(&m_uid, &uid, sizeof(m_uid));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProgramShaderCache::ShaderCompileWorkItem::Compile()
|
|
|
|
{
|
|
|
|
ShaderHostConfig host_config = ShaderHostConfig::GetCurrent();
|
|
|
|
ShaderCode vcode =
|
|
|
|
GenerateVertexShaderCode(APIType::OpenGL, host_config, m_uid.vuid.GetUidData());
|
|
|
|
ShaderCode pcode = GeneratePixelShaderCode(APIType::OpenGL, host_config, m_uid.puid.GetUidData());
|
|
|
|
ShaderCode gcode;
|
|
|
|
if (g_ActiveConfig.backend_info.bSupportsGeometryShaders &&
|
|
|
|
!m_uid.guid.GetUidData()->IsPassthrough())
|
|
|
|
gcode = GenerateGeometryShaderCode(APIType::OpenGL, host_config, m_uid.guid.GetUidData());
|
|
|
|
|
|
|
|
CompileShader(m_program, vcode.GetBuffer(), pcode.GetBuffer(), gcode.GetBuffer());
|
2017-09-09 08:30:15 +00:00
|
|
|
DrawPrerenderArray(m_program,
|
|
|
|
static_cast<PrimitiveType>(m_uid.guid.GetUidData()->primitive_type));
|
2017-07-20 05:25:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::ShaderCompileWorkItem::Retrieve()
|
|
|
|
{
|
|
|
|
auto iter = pshaders.find(m_uid);
|
|
|
|
if (iter != pshaders.end() && !iter->second.pending)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2017-07-20 05:25:29 +00:00
|
|
|
// Main thread already compiled this shader.
|
|
|
|
m_program.Destroy();
|
|
|
|
return;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2017-07-20 05:25:29 +00:00
|
|
|
|
|
|
|
PCacheEntry& entry = pshaders[m_uid];
|
|
|
|
entry.shader = m_program;
|
|
|
|
entry.in_cache = false;
|
|
|
|
entry.pending = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramShaderCache::UberShaderCompileWorkItem::UberShaderCompileWorkItem(const UBERSHADERUID& uid)
|
|
|
|
{
|
|
|
|
std::memcpy(&m_uid, &uid, sizeof(m_uid));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProgramShaderCache::UberShaderCompileWorkItem::Compile()
|
|
|
|
{
|
|
|
|
ShaderHostConfig host_config = ShaderHostConfig::GetCurrent();
|
|
|
|
ShaderCode vcode =
|
|
|
|
UberShader::GenVertexShader(APIType::OpenGL, host_config, m_uid.vuid.GetUidData());
|
|
|
|
ShaderCode pcode =
|
|
|
|
UberShader::GenPixelShader(APIType::OpenGL, host_config, m_uid.puid.GetUidData());
|
|
|
|
ShaderCode gcode;
|
|
|
|
if (g_ActiveConfig.backend_info.bSupportsGeometryShaders &&
|
|
|
|
!m_uid.guid.GetUidData()->IsPassthrough())
|
|
|
|
gcode = GenerateGeometryShaderCode(APIType::OpenGL, host_config, m_uid.guid.GetUidData());
|
|
|
|
|
|
|
|
CompileShader(m_program, vcode.GetBuffer(), pcode.GetBuffer(), gcode.GetBuffer());
|
2017-09-09 08:30:15 +00:00
|
|
|
DrawPrerenderArray(m_program,
|
|
|
|
static_cast<PrimitiveType>(m_uid.guid.GetUidData()->primitive_type));
|
2017-07-20 05:25:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::UberShaderCompileWorkItem::Retrieve()
|
|
|
|
{
|
|
|
|
auto iter = ubershaders.find(m_uid);
|
|
|
|
if (iter != ubershaders.end() && !iter->second.pending)
|
|
|
|
{
|
|
|
|
// Main thread already compiled this shader.
|
|
|
|
m_program.Destroy();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PCacheEntry& entry = ubershaders[m_uid];
|
|
|
|
entry.shader = m_program;
|
|
|
|
entry.in_cache = false;
|
|
|
|
entry.pending = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::CreatePrerenderArrays(SharedContextData* data)
|
|
|
|
{
|
2017-07-31 12:39:52 +00:00
|
|
|
// Create a framebuffer object to render into.
|
|
|
|
// This is because in EGL, and potentially GLX, we have a surfaceless context.
|
|
|
|
glGenTextures(1, &data->prerender_FBO_tex);
|
|
|
|
glBindTexture(GL_TEXTURE_2D_ARRAY, data->prerender_FBO_tex);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MAX_LEVEL, 1);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
2017-08-05 08:18:30 +00:00
|
|
|
glTexImage3D(GL_TEXTURE_2D_ARRAY, 0, GL_RGBA, 1, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
2017-07-31 12:39:52 +00:00
|
|
|
glGenTextures(1, &data->prerender_FBO_depth);
|
|
|
|
glBindTexture(GL_TEXTURE_2D_ARRAY, data->prerender_FBO_depth);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MAX_LEVEL, 1);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
2017-08-05 08:18:30 +00:00
|
|
|
glTexImage3D(GL_TEXTURE_2D_ARRAY, 0, GL_DEPTH_COMPONENT32F, 1, 1, 1, 0, GL_DEPTH_COMPONENT,
|
|
|
|
GL_FLOAT, nullptr);
|
2017-07-31 12:39:52 +00:00
|
|
|
glGenFramebuffers(1, &data->prerender_FBO);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, data->prerender_FBO);
|
|
|
|
glFramebufferTextureLayer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, data->prerender_FBO_tex, 0, 0);
|
|
|
|
glFramebufferTextureLayer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, data->prerender_FBO_depth, 0, 0);
|
|
|
|
|
2017-07-20 05:25:29 +00:00
|
|
|
// Create VAO for the prerender vertices.
|
|
|
|
// We don't use the normal VAO map, since we need to change the VBO pointer.
|
|
|
|
glGenVertexArrays(1, &data->prerender_VAO);
|
|
|
|
glBindVertexArray(data->prerender_VAO);
|
|
|
|
|
|
|
|
// Create and populate the prerender VBO. We need enough space to draw 3 triangles.
|
|
|
|
static constexpr float vbo_data[] = {0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f};
|
|
|
|
constexpr u32 vbo_stride = sizeof(float) * 3;
|
|
|
|
glGenBuffers(1, &data->prerender_VBO);
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, data->prerender_VBO);
|
|
|
|
glBufferData(GL_ARRAY_BUFFER, sizeof(vbo_data), vbo_data, GL_STATIC_DRAW);
|
|
|
|
|
|
|
|
// We only need a position in our prerender vertex.
|
|
|
|
glEnableVertexAttribArray(SHADER_POSITION_ATTRIB);
|
|
|
|
glVertexAttribPointer(SHADER_POSITION_ATTRIB, 3, GL_FLOAT, GL_FALSE, vbo_stride, nullptr);
|
|
|
|
|
|
|
|
// The other attributes have to be active to avoid variant generation.
|
|
|
|
glEnableVertexAttribArray(SHADER_POSMTX_ATTRIB);
|
|
|
|
glVertexAttribIPointer(SHADER_POSMTX_ATTRIB, 1, GL_UNSIGNED_BYTE, vbo_stride, nullptr);
|
|
|
|
for (u32 i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
glEnableVertexAttribArray(SHADER_NORM0_ATTRIB + i);
|
|
|
|
glVertexAttribPointer(SHADER_NORM0_ATTRIB + i, 3, GL_FLOAT, GL_FALSE, vbo_stride, nullptr);
|
|
|
|
}
|
|
|
|
for (u32 i = 0; i < 2; i++)
|
|
|
|
{
|
|
|
|
glEnableVertexAttribArray(SHADER_COLOR0_ATTRIB + i);
|
|
|
|
glVertexAttribPointer(SHADER_COLOR0_ATTRIB + i, 4, GL_UNSIGNED_BYTE, GL_TRUE, vbo_stride,
|
|
|
|
nullptr);
|
|
|
|
}
|
|
|
|
for (u32 i = 0; i < 8; i++)
|
|
|
|
{
|
|
|
|
glEnableVertexAttribArray(SHADER_TEXTURE0_ATTRIB + i);
|
|
|
|
glVertexAttribPointer(SHADER_TEXTURE0_ATTRIB + i, 3, GL_FLOAT, GL_FALSE, vbo_stride, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need an index buffer to set up the same drawing state on Mesa.
|
|
|
|
static constexpr u16 ibo_data[] = {0, 1, 2};
|
|
|
|
glGenBuffers(1, &data->prerender_IBO);
|
|
|
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, data->prerender_IBO);
|
|
|
|
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(ibo_data), ibo_data, GL_STATIC_DRAW);
|
|
|
|
|
|
|
|
// Mesa also requires the primitive restart state matches?
|
|
|
|
if (g_ActiveConfig.backend_info.bSupportsPrimitiveRestart)
|
|
|
|
{
|
|
|
|
if (GLInterface->GetMode() == GLInterfaceMode::MODE_OPENGLES3)
|
|
|
|
{
|
|
|
|
glEnable(GL_PRIMITIVE_RESTART_FIXED_INDEX);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (GLExtensions::Version() >= 310)
|
|
|
|
{
|
|
|
|
glEnable(GL_PRIMITIVE_RESTART);
|
|
|
|
glPrimitiveRestartIndex(65535);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glEnableClientState(GL_PRIMITIVE_RESTART_NV);
|
|
|
|
glPrimitiveRestartIndexNV(65535);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProgramShaderCache::DestroyPrerenderArrays(SharedContextData* data)
|
|
|
|
{
|
|
|
|
if (data->prerender_VAO)
|
|
|
|
{
|
|
|
|
glDeleteVertexArrays(1, &data->prerender_VAO);
|
|
|
|
data->prerender_VAO = 0;
|
|
|
|
}
|
|
|
|
if (data->prerender_VBO)
|
|
|
|
{
|
|
|
|
glDeleteBuffers(1, &data->prerender_VBO);
|
|
|
|
data->prerender_VBO = 0;
|
|
|
|
}
|
|
|
|
if (data->prerender_IBO)
|
|
|
|
{
|
|
|
|
glDeleteBuffers(1, &data->prerender_IBO);
|
|
|
|
data->prerender_IBO = 0;
|
|
|
|
}
|
2017-07-31 12:39:52 +00:00
|
|
|
if (data->prerender_FBO)
|
|
|
|
{
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
|
|
|
glDeleteFramebuffers(1, &data->prerender_FBO);
|
|
|
|
data->prerender_FBO = 0;
|
|
|
|
}
|
|
|
|
if (data->prerender_FBO_tex)
|
|
|
|
{
|
|
|
|
glDeleteTextures(1, &data->prerender_FBO_tex);
|
|
|
|
data->prerender_FBO_tex = 0;
|
|
|
|
}
|
|
|
|
if (data->prerender_FBO_depth)
|
|
|
|
{
|
|
|
|
glDeleteTextures(1, &data->prerender_FBO_depth);
|
|
|
|
data->prerender_FBO_depth = 0;
|
|
|
|
}
|
2017-07-20 05:25:29 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 08:07:57 +00:00
|
|
|
void ProgramShaderCache::DrawPrerenderArray(const SHADER& shader, PrimitiveType primitive_type)
|
2017-07-20 05:25:29 +00:00
|
|
|
{
|
|
|
|
// This is called on a worker thread, so we don't want to use the normal binding process.
|
|
|
|
glUseProgram(shader.glprogid);
|
|
|
|
|
|
|
|
// The number of primitives drawn depends on the type.
|
|
|
|
switch (primitive_type)
|
|
|
|
{
|
2017-04-30 08:07:57 +00:00
|
|
|
case PrimitiveType::Points:
|
2017-07-20 05:25:29 +00:00
|
|
|
glDrawElements(GL_POINTS, 1, GL_UNSIGNED_SHORT, nullptr);
|
|
|
|
break;
|
2017-04-30 08:07:57 +00:00
|
|
|
case PrimitiveType::Lines:
|
2017-07-20 05:25:29 +00:00
|
|
|
glDrawElements(GL_LINES, 2, GL_UNSIGNED_SHORT, nullptr);
|
|
|
|
break;
|
2017-04-30 08:07:57 +00:00
|
|
|
case PrimitiveType::Triangles:
|
2017-07-20 05:25:29 +00:00
|
|
|
glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_SHORT, nullptr);
|
|
|
|
break;
|
2017-04-30 08:07:57 +00:00
|
|
|
case PrimitiveType::TriangleStrip:
|
|
|
|
glDrawElements(GL_TRIANGLE_STRIP, 3, GL_UNSIGNED_SHORT, nullptr);
|
|
|
|
break;
|
2017-07-20 05:25:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Has to be finished by the time the main thread picks it up.
|
|
|
|
GLsync sync = glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
|
|
|
|
glClientWaitSync(sync, GL_SYNC_FLUSH_COMMANDS_BIT, GL_TIMEOUT_IGNORED);
|
|
|
|
glDeleteSync(sync);
|
2013-02-13 12:12:19 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
} // namespace OGL
|