summaryrefslogtreecommitdiff
path: root/external/collada2gltf/patches
diff options
context:
space:
mode:
authorZolnai Tamás <tamas.zolnai@collabora.com>2014-08-15 17:04:29 +0200
committerZolnai Tamás <tamas.zolnai@collabora.com>2014-08-15 17:05:41 +0200
commit1ea4f163c5a2f531dcfda7899b322636a735c618 (patch)
treef271a788d2792bb01f53e14545b9d1a00b34343d /external/collada2gltf/patches
parent38cbb4c7176d85973c4945a10a262bb487388246 (diff)
collada2gltf: add a better name to this patch
Change-Id: Ie8fb4ff71a683e986b9fec861608590cadee8612
Diffstat (limited to 'external/collada2gltf/patches')
-rw-r--r--external/collada2gltf/patches/shader_compatibility.patch.1 (renamed from external/collada2gltf/patches/fix_linux_shader_compiling.patch.1)2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/collada2gltf/patches/fix_linux_shader_compiling.patch.1 b/external/collada2gltf/patches/shader_compatibility.patch.1
index 0a09385646b7..85413361c055 100644
--- a/external/collada2gltf/patches/fix_linux_shader_compiling.patch.1
+++ b/external/collada2gltf/patches/shader_compatibility.patch.1
@@ -6,7 +6,7 @@ diff -ur collada2gltf.org/shaders/commonProfileShaders.cpp collada2gltf/shaders/
GLSLShader(shared_ptr <GLTFProfile> profile) {
- this->_declarations = "precision highp float;\n";;
-+ this->_declarations = "#ifdef GL_ES_VERSION_2_0\n#version 100 es\n#else\n#version 130\n#endif\nprecision highp float;\n";
++ this->_declarations = "#ifdef GL_ES_VERSION_2_0\n#version 100\n#else\n#version 130\n#endif\nprecision highp float;\n";
this->_body = "void main(void) {\n";
this->_profile = profile;
}