mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
HW shaders: Fix android
This commit is contained in:
parent
53097cc53e
commit
2e1f31ee96
2 changed files with 3 additions and 2 deletions
|
@ -253,7 +253,7 @@ std::string ShaderDecompiler::decompile() {
|
||||||
|
|
||||||
switch (api) {
|
switch (api) {
|
||||||
case API::GL: decompiledShader += "#version 410 core\n"; break;
|
case API::GL: decompiledShader += "#version 410 core\n"; break;
|
||||||
case API::GLES: decompiledShader += "#version 300 es\n"; break;
|
case API::GLES: decompiledShader += "#version 300 es\nprecision mediump float;\nprecision mediump int;\n"; break;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -991,7 +991,8 @@ bool RendererGL::prepareForDraw(ShaderUnit& shaderUnit, PICA::DrawAcceleration*
|
||||||
shader = OpenGL::Shader();
|
shader = OpenGL::Shader();
|
||||||
|
|
||||||
std::string picaShaderSource = PICA::ShaderGen::decompileShader(
|
std::string picaShaderSource = PICA::ShaderGen::decompileShader(
|
||||||
shaderUnit.vs, *emulatorConfig, shaderUnit.vs.entrypoint, PICA::ShaderGen::API::GL, PICA::ShaderGen::Language::GLSL
|
shaderUnit.vs, *emulatorConfig, shaderUnit.vs.entrypoint,
|
||||||
|
Helpers::isAndroid() ? PICA::ShaderGen::API::GLES : PICA::ShaderGen::API::GL, PICA::ShaderGen::Language::GLSL
|
||||||
);
|
);
|
||||||
|
|
||||||
// Empty source means compilation error, if the source is not empty then we convert the recompiled PICA code into a valid shader and upload
|
// Empty source means compilation error, if the source is not empty then we convert the recompiled PICA code into a valid shader and upload
|
||||||
|
|
Loading…
Add table
Reference in a new issue