8#define GLFW_INCLUDE_NONE
36EngineGLES2Renderer::EngineGLES2Renderer()
41 if (tryIdx > 0)
return false;
42 glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_ES_API);
43 glfwWindowHint(GLFW_CONTEXT_CREATION_API, GLFW_NATIVE_CONTEXT_API);
44 glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2);
45 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
50 glfwMakeContextCurrent(glfwWindow);
51 if (glfwGetCurrentContext() ==
nullptr) {
52 Console::println(
"EngineGLES2Renderer::initializeWindowSystemRendererContext(): glfwMakeContextCurrent(): Error: No window attached to context");
208 Console::println(
"EngineGLES2Renderer::createInstance(): Creating EngineGLES2Renderer instance!");
EngineGLES2Renderer * createInstance()
static STATIC_DLL_IMPEXT Engine * currentEngine
static STATIC_DLL_IMPEXT EZRShader * ezrShader
static STATIC_DLL_IMPEXT LightingShader * lightingShader
static STATIC_DLL_IMPEXT LinesShader * linesShader
static STATIC_DLL_IMPEXT GUIShader * guiShader
static STATIC_DLL_IMPEXT ParticlesShader * particlesShader
ShadowMapping * shadowMapping
Early z rejection shader.
void updateMatrices(int contextIdx)
Update program matrices.
void setShader(int contextIdx, const string &id)
Set 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.
Interface to lighting shader program.
void updateLight(int contextIdx, int32_t lightId)
Update light to program.
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Update texture matrix to program.
void updateShaderParameters(int contextIdx)
Update shader parameters.
void updateMaterial(int contextIdx)
Update material to program.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
Particles shader program.
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
Engine connector of GLES2 renderer to other engine functionality.
void onUpdateCameraMatrix(int contextIdx) override
Update camera matrix event.
void onUpdateModelViewMatrix(int contextIdx) override
Update model view matrix event.
void onUpdateProjectionMatrix(int contextIdx) override
Update projection matrix event.
void onUpdateTextureMatrix(int contextIdx) override
Update texture matrix for active texture unit event.
void onBindTexture(int contextIdx, int32_t textureId) override
On bind texture event.
void onUpdateMaterial(int contextIdx) override
On update material.
bool prepareWindowSystemRendererContext(int tryIdx) override
Prepare window system renderer context.
void onUpdateEffect(int contextIdx) override
Update material.
bool initializeWindowSystemRendererContext(GLFWwindow *glfwWindow) override
Initialize window system renderer context.
void onUpdateLight(int contextIdx, int32_t lightId) override
Update light.
void onUpdateShaderParameters(int contextIdx) override
On update shader parameters.
void onUpdateShader(int contextIdx) override
On update shader.
static string getRendererVersion()
const string & getShader(int contextIdx)
Get shader.
void updateLight(int contextIdx, int32_t lightId)
Update light.
void updateMatrices(int contextIdx)
Update matrices.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Update 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 updateEffect()
Update effect to program.
void bindTexture(int32_t textureId)
Bind texture.
void updateTextureMatrix()
Update texure matrix to program.
static string getVersion()