Justin Bogner
aa07f92210
[DirectX][SPIRV] Consistent names for HLSL resource intrinsics (#120466)
Rename HLSL resource-related intrinsics to be consistent with the naming
conventions discussed in [wg-hlsl:0014].
This is an entirely mechanical change, consisting of the following
commands and automated formatting.
```sh
git grep -l handle.fromBinding | xargs perl -pi -e \
's/(dx|spv)(.)handle.fromBinding/$1$2resource$2handlefrombinding/g'
git grep -l typedBufferLoad_checkbit | xargs perl -pi -e \
's/(dx|spv)(.)typedBufferLoad_checkbit/$1$2resource$2loadchecked$2typedbuffer/g'
git grep -l typedBufferLoad | xargs perl -pi -e \
's/(dx|spv)(.)typedBufferLoad/$1$2resource$2load$2typedbuffer/g'
git grep -l typedBufferStore | xargs perl -pi -e \
's/(dx|spv)(.)typedBufferStore/$1$2resource$2store$2typedbuffer/g'
git grep -l bufferUpdateCounter | xargs perl -pi -e \
's/(dx|spv)(.)bufferUpdateCounter/$1$2resource$2updatecounter/g'
git grep -l cast_handle | xargs perl -pi -e \
's/(dx|spv)(.)cast.handle/$1$2resource$2casthandle/g'
```
[wg-hlsl:0014]: https://github.com/llvm/wg-hlsl/blob/main/proposals/0014-consistent-naming-for-dx-intrinsics.md
2024-12-19 12:17:21 -07:00
..
2024-03-31 22:47:55 -07:00
2024-12-13 12:58:59 +01:00
2024-11-07 08:11:15 +00:00
2024-11-07 08:11:15 +00:00
2024-12-19 12:55:44 +00:00
2024-09-25 15:05:52 -07:00
2024-11-07 08:11:15 +00:00
2024-11-07 08:11:15 +00:00
2024-11-06 11:53:33 +00:00
2024-11-07 08:11:15 +00:00
2024-11-07 08:11:15 +00:00
2024-08-31 17:56:06 -04:00
2024-12-19 12:17:21 -07:00
2024-02-05 12:04:39 +01:00
2024-04-19 14:23:09 -04:00
2024-02-05 12:04:39 +01:00
2024-12-06 09:52:32 +01:00
2024-02-05 12:04:39 +01:00
2024-09-25 19:18:17 -04:00
2024-12-18 11:22:39 +00:00
2024-11-14 08:40:45 +00:00
2024-02-05 12:04:39 +01:00
2024-02-05 12:04:39 +01:00
2024-11-21 09:25:10 -08:00
2024-12-09 12:21:49 +01:00
2024-10-31 11:08:15 -07:00
2024-11-07 08:11:15 +00:00
2024-11-07 08:11:15 +00:00
2024-12-06 15:26:45 +05:30
2024-10-29 09:26:47 -07:00
2024-10-26 20:02:05 -07:00
2024-11-20 19:15:23 -08:00
2024-12-02 14:40:36 -05:00
2024-12-05 15:20:56 +01:00