Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pkg-config (.pc) file #392

Closed
haasn opened this issue Oct 9, 2017 · 17 comments
Closed

Add pkg-config (.pc) file #392

haasn opened this issue Oct 9, 2017 · 17 comments
Assignees

Comments

@haasn
Copy link

haasn commented Oct 9, 2017

pkg-config is the standard way to find C libraries on Linux and related systems. It's typical of libraries that intend to be used on Linux to package a pkg-config file.

As far as I can tell, shaderc doesn't seem to include one.

@dneto0
Copy link
Collaborator

dneto0 commented Oct 11, 2017

True, Shaderc doesn't have one. So far most users either compile from source or get it from an SDK such as the Vulkan SDK or Android NDK.

Can you provide a reference to the file format, or a pull request to add one?

@haasn
Copy link
Author

haasn commented Oct 11, 2017

A pkg-config file is useful even when compiling from source, especially considering you seem to vary the library name based on whether or not it's shared or static (for whatever reason).

Here's an example of a pkg-config file:

/usr/lib64/pkgconfig/flac.pc:

prefix=/usr
exec_prefix=${prefix}
libdir=/usr/lib64
includedir=${prefix}/include

Name: FLAC
Description: Free Lossless Audio Codec Library
Version: 1.3.2
Requires.private: ogg
Libs: -L${libdir} -lFLAC
Libs.private: -lm
Cflags: -I${includedir}

You can find a general overview here: https://en.wikipedia.org/wiki/Pkg-config and a more in-depth documentation here: https://linux.die.net/man/1/pkg-config

@dneto0
Copy link
Collaborator

dneto0 commented Oct 2, 2018

Note to self. The same thing was done for SPIRV-Tools via
KhronosGroup/SPIRV-Tools#1103 and KhronosGroup/SPIRV-Tools#1284

@polyzen
Copy link

polyzen commented Oct 3, 2018

Would this enable one to build Shaderc with system-wide installed build deps as opposed to using third_party/?

@haasn
Copy link
Author

haasn commented Oct 5, 2018

Would this enable one to build Shaderc with system-wide installed build deps as opposed to using third_party/?

No, the issues are orthogonal. This would simply allow others to build against shaderc more easily, specifically also allowing users to do e.g. version checks in configure scripts.

As for building shaderc itself against non-vendored third party libraries, that just requires changing the shaderc build script slightly. You can actually find examples of this being done for e.g. the gentoo ebuild, which refuses to use vendored libraries in favor of system wide ones.

@sl1pkn07
Copy link

any update about this?

greetings

@fjhenigman
Copy link
Contributor

I threw something together, completely stolen from SPIRV-Tools.
#581
The .pc files look reasonable to me but I haven't tried using them. If someone could check them that would be great.
Though I think we need -lshaderc_util somewhere, in the same .pc file or a separate one, not sure which.
And do we want a .pc file for libshaderc_combined?
I think we will want a separate one for libshaderc_spvc.

@fjhenigman
Copy link
Contributor

Duh, just realized there's one easy test:
PKG_CONFIG_PATH=. pkg-config --libs shaderc
Works.

@sl1pkn07
Copy link

sl1pkn07 commented Mar 22, 2019

if i understand correct, shaderc.pc is for static libs and shaderc-shared.pc is for shared lisb. rigth?

if the static library if a set of 2 files, libshaderc.a and libshaderc-combined.a . is not should be add the -lshaderc-combined to the shaderc.pc file?

if is a separate lib. why libshasderc-combined not have the shared lib counterpart?

as my understand. separate naming can be avoided . because the unique difference (i mean in naming) between the static lib is the extension, a or lib for static and .so and .dll for shared. use other name scheme is a mess

also. pkgfiles can include info about shared and static libs in the same pkgconfig file. see example here https://stackoverflow.com/questions/27586503/how-to-use-pkg-config-to-link-a-library-statically

greetings

@fjhenigman
Copy link
Contributor

Yes shaderc.pc is for the static version, shaderc-shared.pc for the shared/dynamic version.
I don't know why the the shared version has "-shared" in the name but will find out. I can see how it's not good with pkgconfig.
The libshaderc-combined.a is a static lib with all dependent libs built in. Maybe a shared version could be made, but it doesn't seem to be of much value. I may as well make a shaderc-combined.pc too.
And I think we want shaderc_util.pc and reference it in the "Requires.private" line of shaderc.pc.

@sl1pkn07
Copy link

sl1pkn07 commented Mar 24, 2019

what happen if:

diff --git a/libshaderc/CMakeLists.txt b/libshaderc/CMakeLists.txt
index 9d07136..c6543d1 100644
--- a/libshaderc/CMakeLists.txt
+++ b/libshaderc/CMakeLists.txt
@@ -22,6 +22,7 @@ target_compile_definitions(shaderc_shared
     PUBLIC SHADERC_SHAREDLIB
 )
 set_target_properties(shaderc_shared PROPERTIES SOVERSION 1)
+set_target_properties(shaderc_shared PROPERTIES OUTPUT_NAME shaderc)
 
 if(SHADERC_ENABLE_INSTALL)
   install(
diff --git a/libshaderc_spvc/CMakeLists.txt b/libshaderc_spvc/CMakeLists.txt
index fae235e..af8d787 100644
--- a/libshaderc_spvc/CMakeLists.txt
+++ b/libshaderc_spvc/CMakeLists.txt
@@ -28,6 +28,7 @@ if (DISABLE_EXCEPTIONS)
 endif (DISABLE_EXCEPTIONS)
 
 set_target_properties(shaderc_spvc_shared PROPERTIES SOVERSION 1)
+set_target_properties(shaderc_spvc_shared PROPERTIES OUTPUT_NAME shaderc_spvc)
 
 if(SHADERC_ENABLE_INSTALL)
   install(

?

i've try this and the libshader_shared.so is renamed to libshared.so when is installed

┌─┤[$]|[sl1pkn07]|[sL1pKn07]|[~/aplicaciones/shaderc/build/esee/usr/local/lib64]|
└───╼  ldd *
libshaderc.a:
ldd: atención: no tiene permiso de ejecución para `./libshaderc.a'
        no es un ejecutable dinámico
libshaderc_combined.a:
ldd: atención: no tiene permiso de ejecución para `./libshaderc_combined.a'
        no es un ejecutable dinámico
libshaderc.so:
        linux-vdso.so.1 (0x00007fff0731b000)
        libglslang.so => /usr/lib/libglslang.so (0x00007f9424f12000)
        libOSDependent.so => /usr/lib/libOSDependent.so (0x00007f9424f0d000)
        libOGLCompiler.so => /usr/lib/libOGLCompiler.so (0x00007f9424f08000)
        libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007f9424ee7000)
        libSPIRV.so => /usr/lib/libSPIRV.so (0x00007f9424762000)
        libSPIRV-Tools.so => /usr/lib/libSPIRV-Tools.so (0x00007f9424645000)
        libHLSL.so => /usr/lib/libHLSL.so (0x00007f94245a9000)
        libSPIRV-Tools-opt.so => /usr/lib/libSPIRV-Tools-opt.so (0x00007f9424340000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007f94241b1000)
        libm.so.6 => /usr/lib/libm.so.6 (0x00007f942402c000)
        libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00007f9424012000)
        libc.so.6 => /usr/lib/libc.so.6 (0x00007f9423e4e000)
        /usr/lib64/ld-linux-x86-64.so.2 (0x00007f942517b000)
        librt.so.1 => /usr/lib/librt.so.1 (0x00007f9423e42000)
libshaderc.so.1:
        linux-vdso.so.1 (0x00007ffdcb72d000)
        libglslang.so => /usr/lib/libglslang.so (0x00007fe5ecd95000)
        libOSDependent.so => /usr/lib/libOSDependent.so (0x00007fe5ecd90000)
        libOGLCompiler.so => /usr/lib/libOGLCompiler.so (0x00007fe5ecd8b000)
        libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007fe5ecd6a000)
        libSPIRV.so => /usr/lib/libSPIRV.so (0x00007fe5ec5e5000)
        libSPIRV-Tools.so => /usr/lib/libSPIRV-Tools.so (0x00007fe5ec4c8000)
        libHLSL.so => /usr/lib/libHLSL.so (0x00007fe5ec42c000)
        libSPIRV-Tools-opt.so => /usr/lib/libSPIRV-Tools-opt.so (0x00007fe5ec1c3000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007fe5ec034000)
        libm.so.6 => /usr/lib/libm.so.6 (0x00007fe5ebeaf000)
        libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00007fe5ebe95000)
        libc.so.6 => /usr/lib/libc.so.6 (0x00007fe5ebcd1000)
        /usr/lib64/ld-linux-x86-64.so.2 (0x00007fe5ecffe000)
        librt.so.1 => /usr/lib/librt.so.1 (0x00007fe5ebcc5000)
┌─┤[$]|[sl1pkn07]|[sL1pKn07]|[~/aplicaciones/shaderc/build/esee/usr/local/lib64]|
└───╼  file *
libshaderc.a:          current ar archive
libshaderc_combined.a: current ar archive
libshaderc.so:         symbolic link to libshaderc.so.1
libshaderc.so.1:       ELF 64-bit LSB shared object, x86-64, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=eef47f6b426b251ecac7afe78015fb9e7836a67c, with debug_info, not stripped

with this, is not necessary create 2 pkgconfig files, one for static and other for shared

greetings

@dcbaker
Copy link

dcbaker commented Mar 25, 2019

Please don't build a "combined" or use inheritance in pkg-config, that's not normal. Shaderc is a bit strange because it provides both a static and a shared library at the same time, linux projects usually only provide one or the other and require the project to be rebuilt and installed twice if you want both. It would be preferable however of the shaderc.pc to provide the shared version, as that is what people on Linux generally want. In fact, you probably don't even need to provide a pkg-config file for the static version at all.

tl;dr It's fine to just provide a single shaderc.pc that provides the shared library, if someone wants to statically link shaderc they can just vendor/submodule it.

@fjhenigman
Copy link
Contributor

We don't want to break any existing users, so we're not going to rename anything.
We also don't want to add libshaderc.so (while keeping libshaderc.a) because people who were getting the static lib with -lshaderc would start geting the shared lib since it takes precedence.
We can add shaderc.pc that will output -lshaderc_shared from the command "pkg-config shaderc"
For completeness (at the risk of adding confusion) we'll add shaderc_static.pc and shaderc_combined.pc too.
Hope this helps.

@fjhenigman fjhenigman self-assigned this Mar 28, 2019
@knappador
Copy link

The impacts of this quality-of-life improvement will begin accruing almost immediately.

google/shaderc-rs#44

I am implementing the system search fallback phase of fixing the issue and I have to for now just guess the path.

Anyone happen to know where homebrew etc like to stash their shaderc static libs?

@fjhenigman
Copy link
Contributor

Landed 439a848 so closing this.

@sl1pkn07
Copy link

sl1pkn07 commented Apr 4, 2019

THANKS!

greetings!

@eli-schwartz
Copy link

Shaderc is a bit strange because it provides both a static and a shared library at the same time, linux projects usually only provide one or the other and require the project to be rebuilt and installed twice if you want both.

That's not even true at all, many projects compile both. autotools does this by default, unless you explicitly use --disable-static. meson has -Ddefault_library which supports "both" but defaults to shared, and leaves this in the control of the user. Projects which use bare makefiles offer separate targets for both, but usually share object files between the two and don't require running make clean in order to build both.

Many system distributions will choose to provide both, in order to cater to users wishing to build their own statically linked programs.

We also don't want to add libshaderc.so (while keeping libshaderc.a) because people who were getting the static lib with -lshaderc would start geting the shared lib since it takes precedence.

I would argue that they should have always used -Wl,-static (since that is "best practice" for people who care whether they link statically or dynamically), but I guess if they were being encouraged to not bother explicitly specifying how they wanted to link, then this would constitute a breaking change for them.

It is nevertheless true that using plain old -lfoo on the compiler command line is "supposed" to mean, "I have no bias regarding what type of library to link to and am merely requesting that the compiler should link to something".

github-actions bot pushed a commit to stuart6854/shaderc that referenced this issue Dec 7, 2023
KhronosGroup/SPIRV-Headers@4183b26...1c6bb27

$ git log 4183b260f..1c6bb2743 --date=short --no-merges --format='%ad %ae %s'
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Swarmley/shaderc that referenced this issue Dec 7, 2023
KhronosGroup/SPIRV-Headers@124a966...1c6bb27

$ git log 124a9665e..1c6bb2743 --date=short --no-merges --format='%ad %ae %s'
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to ZeunO8/shaderc that referenced this issue Dec 7, 2023
KhronosGroup/SPIRV-Headers@124a966...1c6bb27

$ git log 124a9665e..1c6bb2743 --date=short --no-merges --format='%ad %ae %s'
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to BaptisteLemarcis/shaderc that referenced this issue Dec 7, 2023
KhronosGroup/SPIRV-Headers@79743b8...1c6bb27

$ git log 79743b899..1c6bb2743 --date=short --no-merges --format='%ad %ae %s'
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to sudonatalie/shaderc that referenced this issue Dec 7, 2023
KhronosGroup/SPIRV-Headers@124a966...1c6bb27

$ git log 124a9665e..1c6bb2743 --date=short --no-merges --format='%ad %ae %s'
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Physolia/shaderc that referenced this issue Dec 7, 2023
KhronosGroup/SPIRV-Headers@4183b26...1c6bb27

$ git log 4183b260f..1c6bb2743 --date=short --no-merges --format='%ad %ae %s'
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Physolia/shaderc that referenced this issue Apr 6, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to jjiangweilan/shaderc that referenced this issue Apr 6, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to stuart6854/shaderc that referenced this issue Apr 7, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Swarmley/shaderc that referenced this issue Apr 7, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to ZeunO8/shaderc that referenced this issue Apr 7, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to BaptisteLemarcis/shaderc that referenced this issue Apr 7, 2024
KhronosGroup/SPIRV-Headers@79743b8...4f7b471

$ git log 79743b899..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to sudonatalie/shaderc that referenced this issue Apr 7, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Physolia/shaderc that referenced this issue Apr 7, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to jjiangweilan/shaderc that referenced this issue Apr 7, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to stuart6854/shaderc that referenced this issue Apr 8, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Swarmley/shaderc that referenced this issue Apr 8, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to ZeunO8/shaderc that referenced this issue Apr 8, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to BaptisteLemarcis/shaderc that referenced this issue Apr 8, 2024
KhronosGroup/SPIRV-Headers@79743b8...4f7b471

$ git log 79743b899..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to sudonatalie/shaderc that referenced this issue Apr 8, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Physolia/shaderc that referenced this issue Apr 8, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to jjiangweilan/shaderc that referenced this issue Apr 8, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to stuart6854/shaderc that referenced this issue Apr 9, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Swarmley/shaderc that referenced this issue Apr 9, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to ZeunO8/shaderc that referenced this issue Apr 9, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to BaptisteLemarcis/shaderc that referenced this issue Apr 9, 2024
KhronosGroup/SPIRV-Headers@79743b8...4f7b471

$ git log 79743b899..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to sudonatalie/shaderc that referenced this issue Apr 9, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Physolia/shaderc that referenced this issue Apr 9, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to jjiangweilan/shaderc that referenced this issue Apr 9, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to stuart6854/shaderc that referenced this issue Apr 10, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Swarmley/shaderc that referenced this issue Apr 10, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to ZeunO8/shaderc that referenced this issue Apr 10, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to BaptisteLemarcis/shaderc that referenced this issue Apr 10, 2024
KhronosGroup/SPIRV-Headers@79743b8...4f7b471

$ git log 79743b899..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to sudonatalie/shaderc that referenced this issue Apr 10, 2024
KhronosGroup/SPIRV-Headers@124a966...4f7b471

$ git log 124a9665e..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)
2023-10-11 89833130+rjodinchr ClspvReflection non-sematic: add NormalizedSamplerMaskPushConstant (google#377)
2023-10-04 95509728+pradyumans Add a Source Language for Slang (google#383)
2023-10-04 95509728+pradyumans Register Slang Compiler for SPIR-V (google#382)
2023-09-20 fwahlster Add LiteralFloat to operand_kinds (google#380)
2023-09-20 40001162+alelenv Add headers for SPV_NV_displacement_micromap. (google#374)
2023-09-20 fwahlster remove additional version "1.0" from SecondaryViewportRelativeNV (google#379)
2023-09-13 gleese Remove Kernel from ConstantSampler enum values (google#378)
2023-09-13 andrzej.ratajewski Add SPV_INTEL_cache_controls extension support (google#376)
2023-08-23 dneto Validate enums have sensible versions and are visible (google#369)
2023-08-16 viktoria.maksimova Headers support for two Intel extensions (google#356)
2023-08-10 dneto Revert "Merge pull request google#367 from dneto0/coop-matrix-enums-deps"
2023-07-29 konstantin.seurer Add SPV_AMDX_shader_enqueue

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to Physolia/shaderc that referenced this issue Apr 10, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
github-actions bot pushed a commit to jjiangweilan/shaderc that referenced this issue Apr 10, 2024
KhronosGroup/SPIRV-Headers@4183b26...4f7b471

$ git log 4183b260f..4f7b471f1 --date=short --no-merges --format='%ad %ae %s'
2024-03-27 121976986+aejjehint Update bit reservations for loop controsl and memory operands (google#424)
2024-03-22 michal Register LLVM SPIR-V Backend as SPIR-V generator (google#423)
2024-03-20 admin Register spq tools for SPIR-V (google#399)
2024-03-01 rlocatti Add SPV_NV_raw_access_chains (google#417)
2024-02-28 viktoria.maksimova Headers support for SPV_INTEL_maximum_registers extension (google#416)
2024-02-14 jbolz Add SPV_NV_shader_atomic_fp16_vector (google#420)
2024-02-14 wooykim SPV_QCOM_image_processing2 (google#419)
2024-02-14 dneto cmake: Allow external control of test and install options (google#418)
2024-02-12 ben.ashbaugh remove Kernel from Image Channel Order and Channel Data Type enums (google#413)
2024-02-07 gleese Update FPFastMath token reservation (google#414)
2024-01-26 dneto List all licenses in the root LICENSE file. (google#410)
2024-01-26 dneto Support SPV_KHR_quad_control (with fixed line endings) (google#412)
2024-01-24 dneto SPV_KHR_float_controls2 (google#409)
2024-01-24 alanbaker Add SPV_KHR_maximal_reconvergence (google#407)
2024-01-24 ben.ashbaugh update copyright dates to 2024 (google#404)
2024-01-17 robin Register Zig Compiler tool (google#405)
2024-01-17 robin Add a Source Language for Zig (google#403)
2024-01-10 gleese Reserve an FPFastMathMode bit (google#401)
2024-01-10 49699333+dependabot[bot] Bump the github-actions group with 1 update (google#400)
2024-01-10 89833130+rjodinchr Publish the header for the vulkan-shader-profiler embedded reflection… (google#398)
2024-01-03 dmitry.sidorov Upstream tokens for SPV_INTEL_masked_gather_scatter (google#391)
2024-01-03 joycebrum feat: Create dependabot.yml (google#397)
2023-12-06 kevin.petit Add a few missing calls to std::exit on error (google#395)
2023-12-06 bertrand.wlodarczyk Headers support for FPGAClusterAttributesV2INTEL (google#393)
2023-12-07 115671160+spencer-lunarg Add Type-Declaration for extended types (google#392)
2023-12-06 dmitry.sidorov Update SPV_INTEL_long_composites tokens (google#375)
2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (google#389)
2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (google#390)
2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (google#388)
2023-10-18 bertrand.wlodarczyk Headers support for new FPGAMemoryAttributesINTEL (google#384)

Created with:
  roll-dep third_party/spirv-headers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

8 participants