mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-25 00:04:15 +00:00
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:
parent
71d90e562a
commit
7a3434efd1
@ -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"
|
||||
|
@ -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();
|
||||
|
Binary file not shown.
@ -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" }
|
||||
|
||||
|
@ -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" }
|
||||
|
Loading…
Reference in New Issue
Block a user