- 19 Sep, 2019 1 commit
-
-
John Kessenich authored
Adds uvec2 <-> reference constructor support. Switches from EXT to KHR for physical_storage_buffer.
-
- 18 Sep, 2019 4 commits
-
-
John Kessenich authored
-
John Kessenich authored
-
John Kessenich authored
Add GL_EXT_shader_subgroup_extended_types support
-
Jeff Bolz authored
-
- 16 Sep, 2019 5 commits
-
-
John Kessenich authored
Branch to support SPIR-V 1.5 changes
-
John Kessenich authored
-
John Kessenich authored
The generalization to addIncorporatedExtension() also fixed a 1.3 corner case with SPV_KHR_16bit_storage.
-
John Kessenich authored
Add flags for local size values ( compute shader )
-
Chow authored
Purpose : According to GLSL SPEC 4.6 ( 4.4.1.4 Compute Shader Inputs), for compute shader input qualifiers, we should declare such qualifiers with same values in the same shader (local_size_x, y and z). "If such a layout qualifier is declared more than once in the same shader, all those declarations must set the same set of local work-group sizes and set them to the same values; otherwise a compile-time error results." Why this fix: If we manually set "local_size_x = 1" and directly following a declaration like "local_size_x = 2", this would not be detected. That is because currently we treat all the '1' as default value and could not restrictly detect whether those are default values. Test case: ...... layout(local_size_x=1) in; layout(local_size_x=2) in; ...... So I add test cases for this fix: 1. set local_size_y = 1 => success 2. set local_size_y = 2 => error 3. set local_size_y = 1 => success
-
- 13 Sep, 2019 1 commit
-
-
John Kessenich authored
-
- 12 Sep, 2019 1 commit
-
-
John Kessenich authored
Comment out unused params; Fix type warning.
-
- 11 Sep, 2019 2 commits
-
-
John Kessenich authored
Fix incorrect function prototypes of 64-bit findLSB/findMSB
-
Dan Sinclair authored
-
- 10 Sep, 2019 1 commit
-
-
Dan Sinclair authored
-
- 09 Sep, 2019 1 commit
-
-
Rex Xu authored
According to the 32-bit counterparts, their forms should be genI64Type findLSB(genI64Type value) genI64Type findLSB(genU64Type value) genI64Type findMSB(genI64Type value) genI64Type findMSB(genU64Type value)
-
- 05 Sep, 2019 2 commits
-
-
John Kessenich authored
The order of error checking was not quite being correct (maybe there is no correct ordering, when many checks must be done and they affect each other). So, check for block-name reuse twice.
-
John Kessenich authored
Update spirv-tools and spriv-headers known good.
-
- 04 Sep, 2019 1 commit
-
-
Greg Fischer authored
-
- 03 Sep, 2019 1 commit
-
-
John Kessenich authored
Code refine
-
- 02 Sep, 2019 3 commits
- 30 Aug, 2019 2 commits
-
-
John Kessenich authored
Also fixes, in practice, https://github.com/KhronosGroup/GLSL/issues/83. When the specification language is correctly created, glslang can be revisited for correctness. In the meantime, this seems like the best "bug" to have relative to the specification. Memory qualifiers are only relevant to parameters when they apply to what the argument points to, as otherwise the argument is copied. This leaves the fix from #1870 in place, and then more correctly ignores memory qualifiers when something will be passed by copy.
-
John Kessenich authored
-
- 29 Aug, 2019 1 commit
-
-
John Kessenich authored
Initialize variable to avoid uninitialized variable warnings in Clang
-
- 28 Aug, 2019 5 commits
-
-
Ryan Harrison authored
-
Ryan Harrison authored
In the current version of the code on non-debug builds these cases will fallthrough, since assert is a no-op, and eventually make a call passing in |op| which hasn't been initialized. clang is currently throwing a warning about this behaviour when integrating downstream. This patch changes the behaviour, so that in any branch that has an assert now has a return nullptr, to indicate failure after it and avoid the uninitialized variable usage.
-
John Kessenich authored
GL_NV_integer_cooperative_matrix support
-
John Kessenich authored
-
John Kessenich authored
-
- 27 Aug, 2019 3 commits
-
-
John Kessenich authored
BUILD.gn: Add missing HLSL files.
-
Corentin Wallez authored
-
John Kessenich authored
Dereference any array type before expanding root-level SSBO members
-
- 26 Aug, 2019 4 commits
-
-
John Kessenich authored
GN build (for Chromium): enable HLSL in dependents.
-
Corentin Wallez authored
The previous fix for this only enabled HLSL internally in glslang which means that dependent using HLSL, for example shaderc, failed compilation.
-
baldurk authored
If we don't do this then we get reflection output like so: ArrayedBind[0].a.a: offset 0, type 1406, size 1, index 4, binding -1, stages 0 ArrayedBind[0].a.b: offset 4, type 1406, size 1, index 4, binding -1, stages 0 ArrayedBind[0].b.a: offset 4, type 1406, size 1, index 4, binding -1, stages 0 ArrayedBind[0].b.b: offset 8, type 1406, size 1, index 4, binding -1, stages 0 ArrayedBind[0].b: offset 4, type 1406, size 1, index 4, binding -1, stages 1 When the outer reflection loop that calls blowUpActiveAggregate incorrectly iterates over the struct members.
-
John Kessenich authored
GN build (for Chromium): enable HLSL
-
- 23 Aug, 2019 2 commits
-
-
David Neto authored
-
Jeff Bolz authored
-