Update glslangValidator.exe to latest version (#979)

VulkanSDK: 1.1.77.0
Date: 20-Jun-2018
SHA256: 41631380388244fa88209beac748553705087ed7df375c08456a82e0769bd0c4
https://vulkan.lunarg.com/sdk/home#sdk/downloadConfirm/1.1.77.0/windows/VulkanSDK-1.1.77.0-Installer.exe

sha256sum VulkanSDK/1.1.77.0/Bin/glslangValidator.exe
90b377479fb137f4ac69460d5f5cdc54cd23bace5eb6e6812516fdfa693b25cf *VulkanSDK/1.1.77.0/Bin/glslangValidator.exe

glslangValidator.exe --version

Glslang Version: 7.7.2767
ESSL Version: OpenGL ES GLSL 3.20 glslang Khronos. 7.2767
GLSL Version: 4.60 glslang Khronos. 7.2767
SPIR-V Version 0x00010300, Revision 1
GLSL.std.450 Version 100, Revision 1
Khronos Tool ID 8
SPIR-V Generator Version 7
GL_KHR_vulkan_glsl version 100
ARB_GL_gl_spirv version 100
This commit is contained in:
aloucks 2018-06-30 13:18:37 -04:00 committed by Pierre Krieger
parent 71d90e562a
commit 7a3434efd1
5 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "glsl-to-spirv"
version = "0.1.5"
version = "0.1.6"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Wrapper around the official GLSL to SPIR-V compiler"

View File

@ -16,7 +16,7 @@ fn main() {
let path = if target.contains("windows") {
const SHA256SUM: &'static str =
"b6ebab5bd07dc7c0b54c59a2a303df58f7132e5fd6c177ffed92d20934dafa41";
"90b377479fb137f4ac69460d5f5cdc54cd23bace5eb6e6812516fdfa693b25cf";
let path = Path::new("build/glslangValidator.exe").to_owned();
let content = fs::read(&path).expect("failed to open executable");
let mut hasher = Sha256::default();

View File

@ -13,7 +13,7 @@ name = "vulkano_shader_derive"
proc-macro = true
[dependencies]
glsl-to-spirv = { version = "0.1.5", path = "../glsl-to-spirv" }
glsl-to-spirv = { version = "0.1.6", path = "../glsl-to-spirv" }
syn = "0.14"
vulkano-shaders = { version = "0.9", path = "../vulkano-shaders" }

View File

@ -9,4 +9,4 @@ documentation = "http://tomaka.github.io/vulkano/vulkano/index.html"
categories = ["rendering::graphics-api"]
[dependencies]
glsl-to-spirv = { version = "0.1.5", path = "../glsl-to-spirv" }
glsl-to-spirv = { version = "0.1.6", path = "../glsl-to-spirv" }