~pcsx2-team/pcsx2-github-mirror/+git/glslang:vulkan-sdk-1.3.283

Last commit made on 2024-05-02
Get this branch:
git clone -b vulkan-sdk-1.3.283 https://git.launchpad.net/~pcsx2-team/pcsx2-github-mirror/+git/glslang

Branch merges

Branch information

Name:
vulkan-sdk-1.3.283
Repository:
lp:~pcsx2-team/pcsx2-github-mirror/+git/glslang

Recent commits

e8dd0b6... by Jeremy Hayes <email address hidden>

Update CHANGES for 14.2.0

409c97d... by Jeremy Hayes <email address hidden>

Update known_good.json

142052f... by David Neto <email address hidden>

Update validation results of SPV_QCOM_image_processing2

Update SPIRV-Tools to include https://github.com/KhronosGroup/SPIRV-Tools/pull/5646
which fixes validation of SPV_QCOM_imageprocessing2
This allows us to remove the "Validation failed" result for two
tests.

f857417... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

Bump hendrikmuhs/ccache-action from 1.2.12 to 1.2.13

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

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

Signed-off-by: dependabot[bot] <email address hidden>

56b4ede... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

Bump actions/upload-artifact from 4.3.2 to 4.3.3

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.2 to 4.3.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/1746f4ab65b179e0ea60a494b83293b640dd5bba...65462800fd760344b1a7b4382951275a0abb4808)

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

Signed-off-by: dependabot[bot] <email address hidden>

1fc07b5... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

Bump github/codeql-action from 3.25.1 to 3.25.3

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.1 to 3.25.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/c7f9125735019aa87cfc361530512d50ea439c71...d39d31e687223d841ef683f52467bd88e9b21c14)

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

Signed-off-by: dependabot[bot] <email address hidden>

44fcbcc... by jimihem <email address hidden>

location aliasing (#3438)

* location aliasing
    when location aliasing, the aliases sharing the location must have the same underlying numerical type
    (floating-point or integer) and the same auxiliary storage and interpolation qualification.
    The following case, glslang need report error.

    layout(vertices = 1) out;

    layout (location = 1, component = 0) in double gohan[];
    layout (location = 1, component = 2) in float goten[];

    in vec4 vs_tcs[];
    out vec4 tcs_tes[];

    void main()
    {
    }

* Need consider the following case: location aliasing with different interpolation qualifier.

9337143... by Arcady Goldmints-Orlov <email address hidden>

Increase the TIntermediate::usedIo array

In 0bbec2e8f, the code started using usedIo[4], however it never
increased the size of the array to make that index actually valid.

b5672e8... by assiduous <email address hidden>

readme: added a note about STACK_SIZE Emscripten compiler setting

a4f8700... by Wooyoung Kim <email address hidden>

A couple of fixes to the GL_QCOM_image_processing2 support (#3578)

1) handle the extension requirements of GL_QCOM_image_processing2
   correctly
2) add QCOM image processing decorations to ids only once.