aboutsummaryrefslogtreecommitdiff
path: root/update_external_sources.sh
diff options
context:
space:
mode:
authorMark Young <marky@lunarg.com>2016-08-25 20:12:05 -0600
committerMark Young <marky@lunarg.com>2016-08-26 07:50:31 -0600
commite77704f5e6eb2207ade01a8489b42408923a1b2e (patch)
treec53ab2678e319f01916ac8f5413fcb5285f9014d /update_external_sources.sh
parentcb8cee021ad6615d105a4d6f852952bc30f64240 (diff)
downloadusermoji-e77704f5e6eb2207ade01a8489b42408923a1b2e.tar.xz
glslang: Remove change to revert texel fetch fix.
Previously, we had to revert a texel fetch fix in glslang as part of the update_external_sources.bat/sh due to a bug in the certain drivers. The drivers have been fixed and released so we can remove the change. Change-Id: I018a0dbbc5fb27d7fbd91bc3073f0f5bef5cd346
Diffstat (limited to 'update_external_sources.sh')
-rwxr-xr-xupdate_external_sources.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/update_external_sources.sh b/update_external_sources.sh
index 59197f09..640a5989 100755
--- a/update_external_sources.sh
+++ b/update_external_sources.sh
@@ -27,15 +27,6 @@ function update_glslang () {
cd $BASEDIR/glslang
git fetch --all
git checkout $GLSLANG_REVISION
- # Revert glslang a5c33d6ffb34ccede5b233bc724c907166b6e479
- # See https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/issues/681
- git diff-index --quiet HEAD | true
- rc=${PIPESTATUS[0]}
- if (( $rc == 0 ))
- then
- echo "applying patch to revert glslang a5c33d"
- git apply $BUILDDIR/glslang_revert_a5c33d.patch.txt
- fi
}
function create_spirv-tools () {