Timo Aaltonen pushed to branch upstream-unstable at X Strike Force / vulkan / 
glslang


Commits:
0ae89600 by Nathaniel Cesario at 2023-12-22T14:19:22-05:00
Use C++ containers for builtin versioning

Removes some of the pointers/"end markes" used in the BuiltInFuntion
versioning, replacing them with std::arrays and spans.

NOTE: The span class used is a copy of the span class that has been in
use in the Vulkan-ValidationLayers as a temporary solution until C++20
is available.

NOTE: The std::arrays could be constexprs, but this requires some extra
work pre-C++20, and is therefore not included in this change, but could
be done in a follow up PR.

- - - - -
809fd43e by Nathaniel Cesario at 2023-12-24T00:55:17-07:00
Fix MinGW build

- - - - -
89824a83 by dependabot[bot] at 2023-12-26T16:43:57-05:00
Bump github/codeql-action from 3.22.11 to 3.22.12

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.22.11 to 3.22.12.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/b374143c1149a9115d881581d29b8390bbcbb59c...012739e5082ff0c22ca6d6ab32e07c36df03c4a4)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
e17ecb0e by Sajjad Mirza at 2023-12-28T11:00:37-05:00
Emit DebugTypePointer when non-semantic debug info is enabled


- - - - -
88c5373e by jimihem at 2023-12-28T18:38:39-05:00
support GL_ARB_texture_multisample extension.

This extension allows the use of "texelFetch" and 
"textureSize" with 2DMS sampler.
- - - - -
db4d6f85 by jimihem at 2023-12-29T16:23:16-05:00
The array size of gl_SampleMask and gl_SampleMaskIn is ceil(gl_MaxSamples/32) 

    Oes spec says:
    For the both the input array gl_SampleMaskIn[] and the output array 
gl_SampleMask[], bit B of mask M
    (gl_SampleMaskIn[M] or gl_SampleMask[M]) corresponds to sample 32*M+B. 
These arrays have
    ceil(gl_MaxSamples/32) elements, where gl_MaxSamples is the maximum number 
of color samples
    supported by the implementation.

    But glslang report error "array must have size before use length".

    layout(location = 0) out mediump vec4 fragColor;
    void main (void)
    {
    for (int i = 0; i < gl_SampleMask.length(); ++i)
    gl_SampleMask[i] = int(0xAAAAAAAA);

       fragColor = vec4(0.0, 1.0, 0.0, 1.0);
    }

* Add two test items, one is for gl_MaxSapmles = 32 and the other one is for 
gl_MaxSapmles = 64.
- - - - -
1952e63d by dependabot[bot] at 2024-01-08T18:20:11-05:00
Bump hendrikmuhs/ccache-action from 1.2.10 to 1.2.11

Bumps [hendrikmuhs/ccache-action](https://github.com/hendrikmuhs/ccache-action) 
from 1.2.10 to 1.2.11.
- [Release notes](https://github.com/hendrikmuhs/ccache-action/releases)
- 
[Commits](https://github.com/hendrikmuhs/ccache-action/compare/6d1841ec156c39a52b1b23a810da917ab98da1f4...2a51777f6f64b7b7bea213601acba8f5f4fdbe03)

---
updated-dependencies:
- dependency-name: hendrikmuhs/ccache-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
adfeb67b by dependabot[bot] at 2024-01-16T17:02:53-05:00
Bump github/codeql-action from 3.22.12 to 3.23.0

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.22.12 to 3.23.0.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/012739e5082ff0c22ca6d6ab32e07c36df03c4a4...e5f05b81d5b6ff8cfa111c80c22c5fd02a384118)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
0f7d3a07 by dependabot[bot] at 2024-01-16T17:03:17-05:00
Bump actions/upload-artifact from 4.0.0 to 4.1.0

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) 
from 4.0.0 to 4.1.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- 
[Commits](https://github.com/actions/upload-artifact/compare/c7d193f32edcb7bfad88892161225aeda64e9392...1eb3cb2b3e0f29609092a73eb033bb759a334595)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
57d86ab7 by Arcady Goldmints-Orlov at 2024-01-17T16:43:13-05:00
cmake: remove generation of deprecated *Targets.cmake files

These files have had a deprecation notice for a few years now and the
cmake find_package mechanism should be used instead.

- - - - -
866462f8 by dependabot[bot] at 2024-01-23T19:02:59-05:00
Bump mymindstorm/setup-emsdk from 13 to 14

Bumps [mymindstorm/setup-emsdk](https://github.com/mymindstorm/setup-emsdk) 
from 13 to 14.
- [Release notes](https://github.com/mymindstorm/setup-emsdk/releases)
- 
[Commits](https://github.com/mymindstorm/setup-emsdk/compare/d233ac12b0102f74ca199f5dad7a4e2c13a8a745...6ab9eb1bda2574c4ddb79809fc9247783eaf9021)

---
updated-dependencies:
- dependency-name: mymindstorm/setup-emsdk
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
043446f9 by dependabot[bot] at 2024-01-23T19:03:40-05:00
Bump actions/upload-artifact from 4.1.0 to 4.2.0

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) 
from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- 
[Commits](https://github.com/actions/upload-artifact/compare/1eb3cb2b3e0f29609092a73eb033bb759a334595...694cdabd8bdb0f10b2cea11669e1bf5453eed0a6)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
7eea61b5 by dependabot[bot] at 2024-01-23T19:04:31-05:00
Bump github/codeql-action from 3.23.0 to 3.23.1

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.23.0 to 3.23.1.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/e5f05b81d5b6ff8cfa111c80c22c5fd02a384118...0b21cf2492b6b02c465a3e5d7c473717ad7721ba)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
8066fa08 by Jeff Bolz at 2024-01-25T13:46:25-05:00
Implement GL_EXT_maximal_reconvergence

- - - - -
79536da2 by Jeff Bolz at 2024-01-25T19:30:47-05:00
Fix 'maximally_reconverges' token to match the GLSL spec

- - - - -
f6f9840e by Younggwan Kim at 2024-01-26T14:21:54-05:00
SPV: Complete OpAssumeTrueKHR, OpExpectKHR

- - - - -
725017a5 by laddoc at 2024-01-30T16:28:38-05:00
Support extension EXT_shader_quad_control

- - - - -
ee62f721 by laddoc at 2024-01-30T16:28:38-05:00
Fix build issue.

- - - - -
457fc12b by laddoc at 2024-01-30T16:28:38-05:00
Fix build issue.

- - - - -
2ed435cb by laddoc at 2024-01-30T16:28:38-05:00
Update dependent repo's commits points.

- - - - -
fc3bbbb0 by laddoc at 2024-01-30T16:28:38-05:00
Update test output typo.

- - - - -
343b9761 by dependabot[bot] at 2024-01-30T17:39:26-05:00
Bump actions/upload-artifact from 4.2.0 to 4.3.0

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) 
from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- 
[Commits](https://github.com/actions/upload-artifact/compare/694cdabd8bdb0f10b2cea11669e1bf5453eed0a6...26f96dfa697d77e81fd5907df203aa23a56210a8)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
9679a505 by dependabot[bot] at 2024-01-30T17:39:52-05:00
Bump hendrikmuhs/ccache-action from 1.2.11 to 1.2.12

Bumps [hendrikmuhs/ccache-action](https://github.com/hendrikmuhs/ccache-action) 
from 1.2.11 to 1.2.12.
- [Release notes](https://github.com/hendrikmuhs/ccache-action/releases)
- 
[Commits](https://github.com/hendrikmuhs/ccache-action/compare/2a51777f6f64b7b7bea213601acba8f5f4fdbe03...faf867a11c028c0b483fb2ae72b6fc8f7d842714)

---
updated-dependencies:
- dependency-name: hendrikmuhs/ccache-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
9aaba376 by dependabot[bot] at 2024-01-30T17:40:17-05:00
Bump github/codeql-action from 3.23.1 to 3.23.2

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.23.1 to 3.23.2.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/0b21cf2492b6b02c465a3e5d7c473717ad7721ba...b7bf0a3ed3ecfa44160715d7c442788f65f0f923)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
82e0d00b by Alexandre Bouvier at 2024-02-02T17:52:16-05:00
cmake: add missing SPIRV-Tools-opt dependency

- - - - -
ff49bc4c by dependabot[bot] at 2024-02-05T12:28:17-05:00
Bump lukka/get-cmake from 3.28.1 to 3.28.2

Bumps [lukka/get-cmake](https://github.com/lukka/get-cmake) from 3.28.1 to 
3.28.2.
- [Release notes](https://github.com/lukka/get-cmake/releases)
- 
[Commits](https://github.com/lukka/get-cmake/compare/2654d8ee382b9b6cbbfe6487653b8629b4e062c8...23a189c2ed38ec264f5026ce2303e5b7a664345c)

---
updated-dependencies:
- dependency-name: lukka/get-cmake
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
8c3dbb35 by dependabot[bot] at 2024-02-05T12:28:39-05:00
Bump github/codeql-action from 3.23.2 to 3.24.0

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.23.2 to 3.24.0.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/b7bf0a3ed3ecfa44160715d7c442788f65f0f923...e8893c57a1f3a2b659b6b55564fdfdbbd2982911)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
b1f7affe by Sven van Haastregt at 2024-02-06T11:04:16-08:00
Add GL_KHR_shader_subgroup_rotate support

Co-authored-by: Neil Hickey <neil.hic...@arm.com>
Co-authored-by: Stuart Brady <stuart.br...@arm.com>
Signed-off-by: Sven van Haastregt <sven.vanhaastr...@arm.com>

- - - - -
30661abd by Qingyuan Zheng at 2024-02-09T10:27:40-08:00
Clean up the debug line info tracking and generation. 

- Correctly populate the field `currentFileId` with the presence of include 
directive
- Support lazy OpLine/OpDebugLine generation only when a real instruction is 
added instead of a debug location is set
- Improve the debug location tracking to per-block instead of just per-builder
- A few bug fixes related to debug source info
- - - - -
43dd3239 by dependabot[bot] at 2024-02-12T09:05:58-08:00
Bump lukka/get-cmake from 3.28.2 to 3.28.3

Bumps [lukka/get-cmake](https://github.com/lukka/get-cmake) from 3.28.2 to 
3.28.3.
- [Release notes](https://github.com/lukka/get-cmake/releases)
- 
[Commits](https://github.com/lukka/get-cmake/compare/23a189c2ed38ec264f5026ce2303e5b7a664345c...139aae96315b496d9af1b5e9abe53b15ca7eece8)

---
updated-dependencies:
- dependency-name: lukka/get-cmake
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
47a02a98 by dependabot[bot] at 2024-02-12T09:06:53-08:00
Bump actions/upload-artifact from 4.3.0 to 4.3.1

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) 
from 4.3.0 to 4.3.1.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- 
[Commits](https://github.com/actions/upload-artifact/compare/26f96dfa697d77e81fd5907df203aa23a56210a8...5d5d22a31266ced268874388b861e4b58bb5c2f3)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
b4a6efcd by David Neto at 2024-02-13T15:35:02-08:00
Allow external control of whether Glslang will be tested or installed

Expose GLSLANG__TESTS and GLSLANG_ENABLE_INSTALL as options
that can be controlled from an enclosing project, or from the
command line.

They retain the prior default behaviour. In particular, if Glslang
is not the top level project, then they default to OFF.

Fixes: #3507

- - - - -
9fd0fcd7 by Sven van Haastregt at 2024-02-13T16:13:35-08:00
Add GL_EXT_expect_assume support

Signed-off-by: Sven van Haastregt <sven.vanhaastr...@arm.com>

- - - - -
48702616 by Jeff Bolz at 2024-02-14T18:55:55-05:00
NV_shader_atomic_fp16_vector

- - - - -
114dae91 by Jeff Bolz at 2024-02-14T18:55:55-05:00
Add a string 'StartsWith' helper function

- - - - -
7a2a1623 by Sajjad Mirza at 2024-02-14T19:43:02-05:00
Emit debug info for accelerationStructure and rayQuery variables. (#3502)

* Add debug info for accelerationStructure and rayQuery variables.
* Add test case for accelerationStructure and rayQuery
- - - - -
d8425529 by Bjorn at 2024-02-14T19:44:34-05:00
Clear spirv vector before generating spirv output

This makes spir-v generation idempotent.
- - - - -
6340ba90 by Chris Djali at 2024-02-19T11:26:07-05:00
Document that the only supported dependency commits are the ones in 
known_good.json


- - - - -
fb23503f by AnyOldName3 at 2024-02-19T12:20:43-05:00
-Wmissing-field-initializers fixes

Like with the last few PRs from me, it fixes a warning that's commonly 
enabled in downstream projects that might want to consume glslang via 
FetchContent or equivalent.

It doesn't actually enable the warning, but that might be desirable.

I think I found a bug in the Spv.FromFile.cpp tests that would have been 
prevented had this warning been enabled all along.
I had to guess the value for the missing field, so went for the most common one 
in the list.
The only test case that used a different value before had an RWTexture1D, so if 
baseImageBinding is meaning the same kind of image as image load store in 
OpenGL, it would make sense that that would be the only one to need a non-zero 
value for the binding.

I'm a little concerned that the test wasn't previously failing with the 
incorrectly-assigned fields as it implies they don't make any difference, 
so the test might be too permissive.

- - - - -
b8421d7f by AnyOldName3 at 2024-02-19T14:29:42-05:00
Quote paths in runtest

This means it won't die if the build path contains spaces.

- - - - -
339552c5 by dependabot[bot] at 2024-02-19T17:24:26-05:00
Bump github/codeql-action from 3.24.0 to 3.24.3

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.24.0 to 3.24.3.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/e8893c57a1f3a2b659b6b55564fdfdbbd2982911...379614612a29c9e28f31f39a59013eb8012a51f0)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
8ca24e7c by Chris Djali at 2024-02-19T17:45:45-05:00
Remove implicit fallthrough (#3518)

This is intended so that downstream projects consuming glslang with 
FetchContent or similar means can use `-Wimplicit-fallthrough` without getting 
warning spam.

I've used my best judgement to determine whether the implicit fallthrough 
was desired, or was simply unreachable code.
`std::unreachable` is unavailable until C++23, but I saw places where `default: 
assert(0);` was used, so copied that.
There were a few places where some code might actually have been reachable and 
intended to return a value that represented an error, so someone should double 
check that kind of thing.
- - - - -
606209e0 by Arcady Goldmints-Orlov at 2024-02-20T19:12:06-05:00
Use [[fallthrough]] attribute instead of comments.

Now that we require C++17, the [[fallthrough]] attribute is available as
an alternative to load-bearing comments.

- - - - -
7ffa2894 by Arcady Goldmints-Orlov at 2024-02-20T19:12:06-05:00
Add extra break statements to quiet clang warnings.

Clang complains about code that falls through into an empty default
case, so add some breaks to placate it.

- - - - -
1fc17438 by Arcady Goldmints-Orlov at 2024-02-20T19:12:06-05:00
Refactor reflection.cpp to silence fallthrough warnings

Since assert(0) compiles to nothing on release builds, it's not
sufficient to silence a fallthrough warning. Instead, some switch
statements are changed into if/else and others have the assert(0)
replaced with "return 0".

- - - - -
78e5d797 by Arcady Goldmints-Orlov at 2024-02-20T19:12:06-05:00
cmake: Enable implicit fallthrough warnings for gcc and clang

- - - - -
2518af09 by Jeff Bolz at 2024-02-22T11:51:25-05:00
Change fp16_vector_atomic to not require other SPIR-V atomic extensions

- - - - -
2c4348f0 by Pavel Asyutchenko at 2024-02-26T19:04:23-05:00
Fix HLSL built-in passthrough via inout

- - - - -
fa04cdf3 by dependabot[bot] at 2024-02-27T15:56:37-05:00
Bump github/codeql-action from 3.24.3 to 3.24.5

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.24.3 to 3.24.5.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/379614612a29c9e28f31f39a59013eb8012a51f0...47b3d888fe66b639e431abf22ebca059152f1eea)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
b0df68c4 by Nathaniel Cesario at 2024-02-27T18:26:46-05:00
Add support for GL_ARB_shading_language_include

Add support for GL_ARB_shading_language_include. Usage is identical to
the way GL_GOOGLE_include_directive currently works glslang (since
GL_ARB_shading_language_include is inherently a runtime feature and
glslang is an offline compiler).

Users can simulate their runtime environment by using a custom
glslang::TShader::Includer or using filenames that match their GL
runtime names.

Closes #249.

- - - - -
bf08e1db by Jeremy Hayes at 2024-03-01T18:08:54-05:00
Fix debug info file and source strings

The file and source text was not being set correctly in the test output.
This change makes the test fixture consistent with the command line
behavior, "-gVS", which was my original intent when I added these 
tests.

- - - - -
ad7e719c by dependabot[bot] at 2024-03-04T13:11:12-05:00
Bump github/codeql-action from 3.24.5 to 3.24.6

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
3.24.5 to 3.24.6.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/47b3d888fe66b639e431abf22ebca059152f1eea...8a470fddafa5cbb6266ee11b37ef4d8aae19c571)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supp...@github.com>
- - - - -
bada5c87 by Wooyoung Kim at 2024-03-04T16:43:05-05:00
GL_EXT_control_flow_attributes2 support. (#3531)

The actual support has been available with GL_EXT_control_flow_attributes.
This change set is to handle
  "#extension GL_EXT_control_flow_attributes2 : <val>"
- - - - -
e7d4ad91 by Jeremy Hayes at 2024-03-07T12:27:21-05:00
Increase TStorageQualifier bitfield width

Fix #3538.

Visual Studio 2022 added a new warning to detect when enumerators can
not be represented within the given bit field width. This warning is
disabled by default but can be enabled using the flag /w15249. This PR
increases the width by one to accommodate the signed maximum value of
EvqLast, which is currently 32.

Perhaps a future improvement would be to use scoped enums; however,
that is more work as the typing is more strict and would require more
changes.

- - - - -
d73712b8 by Sharo at 2024-03-07T19:02:45-05:00
Add flags for outputting absolute paths for messages (#3467)

Uses std::filesystem to create absolute paths.
Also adds "shaderFileName" to TSinkBase so it can be used during 
message
outputs.
- - - - -
90b46ffb by Jeremy Hayes at 2024-03-08T14:39:13-07:00
Update known_good.json

- - - - -
ee2f5d09 by Jeremy Hayes at 2024-03-08T18:05:56-05:00
Update CHANGES for release 14.1.0

- - - - -


26 changed files:

- .github/workflows/continuous_deployment.yml
- .github/workflows/continuous_integration.yml
- .github/workflows/scorecard.yml
- CHANGES.md
- CMakeLists.txt
- README.md
- SPIRV/CInterface/spirv_c_interface.cpp
- SPIRV/CMakeLists.txt
- SPIRV/GLSL.ext.KHR.h
- SPIRV/GLSL.ext.NV.h
- SPIRV/GlslangToSpv.cpp
- SPIRV/SpvBuilder.cpp
- SPIRV/SpvBuilder.h
- SPIRV/SpvPostProcess.cpp
- SPIRV/disassemble.cpp
- SPIRV/doc.cpp
- SPIRV/spirv.hpp
- SPIRV/spvIR.h
- StandAlone/CMakeLists.txt
- StandAlone/StandAlone.cpp
- + Test/GL_ARB_texture_multisample.vert
- Test/baseResults/460.frag.out
- + Test/baseResults/GL_ARB_texture_multisample.vert.out
- + Test/baseResults/gl_samplemask_array_size.frag.out
- + Test/baseResults/gl_samplemask_array_size_32.frag.out
- + Test/baseResults/gl_samplemask_array_size_64.frag.out


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/glslang/-/compare/a91631b260cba3f22858d6c6827511e636c2458a...ee2f5d09eaf8f4e8d0d598bd2172fce290d4ca60

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/vulkan/glslang/-/compare/a91631b260cba3f22858d6c6827511e636c2458a...ee2f5d09eaf8f4e8d0d598bd2172fce290d4ca60
You're receiving this email because of your account on salsa.debian.org.


Reply via email to