4#include <unordered_map>
18using std::unordered_map;
30EZRShader::EZRShader(
Renderer* renderer): renderer(renderer)
38 for (
auto shaderIt:
shader) {
39 delete shaderIt.second;
45 bool initialized =
true;
46 for (
auto shaderIt:
shader) {
47 initialized&= shaderIt.second->isInitialized();
54 for (
auto shaderIt:
shader) {
55 shaderIt.second->initialize();
69 for (
auto& ezrShaderContext:
contexts) {
70 if (ezrShaderContext.implementation !=
nullptr) {
71 ezrShaderContext.implementation->unUseProgram(i);
73 ezrShaderContext.implementation =
nullptr;
81 auto& ezrShaderContext =
contexts[contextIdx];
82 if (ezrShaderContext.implementation ==
nullptr)
return;
83 ezrShaderContext.implementation->updateMatrices(
renderer, contextIdx);
87 auto& ezrShaderContext =
contexts[contextIdx];
88 if (ezrShaderContext.implementation ==
nullptr)
return;
89 ezrShaderContext.implementation->updateTextureMatrix(
renderer, contextIdx);
94 auto& ezrShaderContext =
contexts[contextIdx];
95 if (ezrShaderContext.implementation ==
nullptr)
return;
96 ezrShaderContext.implementation->updateMaterial(
renderer, contextIdx);
101 auto& ezrShaderContext =
contexts[contextIdx];
102 if (ezrShaderContext.implementation ==
nullptr)
return;
103 ezrShaderContext.implementation->bindTexture(
renderer, contextIdx, textureId);
107 auto& ezrShaderContext =
contexts[contextIdx];
108 if (ezrShaderContext.implementation ==
nullptr)
return;
109 ezrShaderContext.implementation->updateShaderParameters(
renderer, contextIdx);
117 if (StringTools::startsWith(
id,
string(
"pbr-")) ==
true) {
118 shaderId = StringTools::substring(
id, 4);
124 auto& ezrShaderContext =
contexts[contextIdx];
125 auto currentImplementation = ezrShaderContext.implementation;
126 auto shaderIt =
shader.find(shaderId);
127 if (shaderIt ==
shader.end()) {
128 shaderIt =
shader.find(
"default");
130 auto nextImplementation = shaderIt->second;
131 if (currentImplementation != nextImplementation) {
132 if (currentImplementation !=
nullptr) currentImplementation->unUseProgram(contextIdx);
133 ezrShaderContext.implementation = nextImplementation;
134 ezrShaderContext.implementation->useProgram(
engine, contextIdx);
static int getThreadCount()
Early z rejection shader base class.
Early z rejection default shader class.
static bool isSupported(Renderer *renderer)
Early z rejection shader.
void initialize()
Init EZR shader.
void updateMatrices(int contextIdx)
Update program matrices.
void useProgram(Engine *engine)
Use EZR render shader program.
void setShader(int contextIdx, const string &id)
Set shader.
unordered_map< string, EZRShaderImplementation * > shader
void updateTextureMatrix(int contextIdx)
Set up program texture matrix.
void updateShaderParameters(int contextIdx)
Update shader parameters.
void updateMaterial(int contextIdx)
Update material.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void unUseProgram()
Unuse EZR render shader program.
vector< EZRShaderContext > contexts
virtual bool isSupportingMultithreadedRendering()=0
Early z rejection shader implementation.