2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2011-12-01 03:00:21 +00:00
|
|
|
|
2013-01-28 21:18:54 +00:00
|
|
|
#ifndef PROGRAM_SHADER_CACHE_H_
|
|
|
|
#define PROGRAM_SHADER_CACHE_H_
|
2011-12-01 03:00:21 +00:00
|
|
|
|
|
|
|
#include "GLUtil.h"
|
|
|
|
|
|
|
|
#include "PixelShaderGen.h"
|
|
|
|
#include "VertexShaderGen.h"
|
|
|
|
|
2011-12-21 06:15:48 +00:00
|
|
|
#include "LinearDiskCache.h"
|
|
|
|
#include "ConfigManager.h"
|
|
|
|
|
2011-12-26 07:58:52 +00:00
|
|
|
namespace OGL
|
2011-12-26 05:15:54 +00:00
|
|
|
{
|
2011-12-01 03:00:21 +00:00
|
|
|
|
2013-03-26 21:16:29 +00:00
|
|
|
class SHADERUID
|
2013-02-13 12:12:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-03-26 21:16:29 +00:00
|
|
|
VertexShaderUid vuid;
|
|
|
|
PixelShaderUid puid;
|
2013-02-13 12:12:19 +00:00
|
|
|
|
2013-03-26 21:16:29 +00:00
|
|
|
SHADERUID() {}
|
2013-02-13 12:12:19 +00:00
|
|
|
|
2013-03-26 21:16:29 +00:00
|
|
|
SHADERUID(const SHADERUID& r) : vuid(r.vuid), puid(r.puid) {}
|
2013-02-13 12:12:19 +00:00
|
|
|
|
2013-03-26 21:16:29 +00:00
|
|
|
bool operator <(const SHADERUID& r) const
|
2013-02-13 12:12:19 +00:00
|
|
|
{
|
|
|
|
if(puid < r.puid) return true;
|
|
|
|
if(r.puid < puid) return false;
|
|
|
|
if(vuid < r.vuid) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:16:29 +00:00
|
|
|
bool operator ==(const SHADERUID& r) const
|
2013-02-13 12:12:19 +00:00
|
|
|
{
|
|
|
|
return puid == r.puid && vuid == r.vuid;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-01-18 23:12:02 +00:00
|
|
|
const int NUM_UNIFORMS = 19;
|
2011-12-26 07:58:52 +00:00
|
|
|
extern const char *UniformNames[NUM_UNIFORMS];
|
2013-02-13 12:12:19 +00:00
|
|
|
|
|
|
|
struct SHADER
|
|
|
|
{
|
|
|
|
SHADER() : glprogid(0) { }
|
|
|
|
void Destroy()
|
|
|
|
{
|
|
|
|
glDeleteProgram(glprogid);
|
|
|
|
glprogid = 0;
|
|
|
|
}
|
|
|
|
GLuint glprogid; // opengl program id
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-02-13 12:12:19 +00:00
|
|
|
std::string strvprog, strpprog;
|
|
|
|
GLint UniformLocations[NUM_UNIFORMS];
|
2013-08-23 15:52:47 +00:00
|
|
|
u32 UniformSize[NUM_UNIFORMS];
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-02-13 12:12:19 +00:00
|
|
|
void SetProgramVariables();
|
|
|
|
void SetProgramBindings();
|
|
|
|
void Bind();
|
|
|
|
};
|
2011-12-26 07:58:52 +00:00
|
|
|
|
|
|
|
class ProgramShaderCache
|
2011-12-01 03:00:21 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-12-11 10:08:18 +00:00
|
|
|
|
2011-12-26 07:58:52 +00:00
|
|
|
struct PCacheEntry
|
2011-12-11 10:08:18 +00:00
|
|
|
{
|
2013-02-13 12:12:19 +00:00
|
|
|
SHADER shader;
|
2013-02-13 15:30:15 +00:00
|
|
|
bool in_cache;
|
2011-12-01 03:00:21 +00:00
|
|
|
|
2011-12-26 07:58:52 +00:00
|
|
|
void Destroy()
|
|
|
|
{
|
2013-02-13 12:12:19 +00:00
|
|
|
shader.Destroy();
|
2011-12-21 06:15:48 +00:00
|
|
|
}
|
|
|
|
};
|
2011-12-26 05:15:54 +00:00
|
|
|
|
2013-03-29 14:08:00 +00:00
|
|
|
typedef std::map<SHADERUID, PCacheEntry> PCache;
|
|
|
|
|
2011-12-26 07:58:52 +00:00
|
|
|
static PCacheEntry GetShaderProgram(void);
|
|
|
|
static GLuint GetCurrentProgram(void);
|
2013-02-13 12:12:19 +00:00
|
|
|
static SHADER* SetShader(DSTALPHA_MODE dstAlphaMode, u32 components);
|
|
|
|
static void GetShaderId(SHADERUID *uid, DSTALPHA_MODE dstAlphaMode, u32 components);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-02-13 12:12:19 +00:00
|
|
|
static bool CompileShader(SHADER &shader, const char* vcode, const char* pcode);
|
|
|
|
static GLuint CompileSingleShader(GLuint type, const char *code);
|
2013-01-14 12:58:11 +00:00
|
|
|
static void UploadConstants();
|
2011-12-26 07:58:52 +00:00
|
|
|
|
|
|
|
static void Init(void);
|
|
|
|
static void Shutdown(void);
|
2013-02-13 20:34:48 +00:00
|
|
|
static void CreateHeader(void);
|
2011-12-26 07:58:52 +00:00
|
|
|
|
|
|
|
private:
|
2013-02-13 12:12:19 +00:00
|
|
|
class ProgramShaderCacheInserter : public LinearDiskCacheReader<SHADERUID, u8>
|
2011-12-21 06:15:48 +00:00
|
|
|
{
|
2011-12-26 05:15:54 +00:00
|
|
|
public:
|
2013-10-29 05:34:26 +00:00
|
|
|
void Read(const SHADERUID &key, const u8 *value, u32 value_size) override;
|
2011-12-11 10:08:18 +00:00
|
|
|
};
|
2011-12-26 05:15:54 +00:00
|
|
|
|
2011-12-11 10:08:18 +00:00
|
|
|
static PCache pshaders;
|
2013-02-13 12:12:19 +00:00
|
|
|
static PCacheEntry* last_entry;
|
|
|
|
static SHADERUID last_uid;
|
2011-12-11 10:08:18 +00:00
|
|
|
|
2013-04-29 19:00:39 +00:00
|
|
|
static UidChecker<PixelShaderUid,PixelShaderCode> pixel_uid_checker;
|
|
|
|
static UidChecker<VertexShaderUid,VertexShaderCode> vertex_uid_checker;
|
|
|
|
|
2013-01-14 12:58:11 +00:00
|
|
|
static u32 s_ubo_buffer_size;
|
2013-10-07 15:19:47 +00:00
|
|
|
static s32 s_ubo_align;
|
2011-12-01 03:00:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace OGL
|
2013-01-28 21:18:54 +00:00
|
|
|
#endif
|