Skip to content

Commit

Permalink
gpu: Fix post_process_descriptor_indexing_pass file name
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-lunarg committed Jan 10, 2025
1 parent 682528c commit 02fb1a0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions BUILD.gn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (C) 2018-2021 The ANGLE Project Authors.
# Copyright (C) 2019-2024 LunarG, Inc.
# Copyright (C) 2019-2025 LunarG, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -204,8 +204,8 @@ vvl_sources = [
"layers/gpu/spirv/descriptor_class_texel_buffer_pass.h",
"layers/gpu/spirv/buffer_device_address_pass.cpp",
"layers/gpu/spirv/buffer_device_address_pass.h",
"layers/gpu/spirv/post_process_descriptor_indexing.cpp",
"layers/gpu/spirv/post_process_descriptor_indexing.h",
"layers/gpu/spirv/post_process_descriptor_indexing_pass.cpp",
"layers/gpu/spirv/post_process_descriptor_indexing_pass.h",
"layers/gpu/spirv/function_basic_block.cpp",
"layers/gpu/spirv/function_basic_block.h",
"layers/gpu/spirv/instruction.cpp",
Expand Down
2 changes: 1 addition & 1 deletion layers/gpu/instrumentation/gpuav_shader_instrumentor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#include "gpu/spirv/descriptor_class_texel_buffer_pass.h"
#include "gpu/spirv/ray_query_pass.h"
#include "gpu/spirv/debug_printf_pass.h"
#include "gpu/spirv/post_process_descriptor_indexing.h"
#include "gpu/spirv/post_process_descriptor_indexing_pass.h"

#include <cassert>
#include <fstream>
Expand Down
6 changes: 3 additions & 3 deletions layers/gpu/spirv/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ~~~
# Copyright (c) 2024 LunarG, Inc.
# Copyright (c) 2024-2025 LunarG, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,8 +29,8 @@ target_sources(gpu_av_spirv PRIVATE
ray_query_pass.cpp
debug_printf_pass.h
debug_printf_pass.cpp
post_process_descriptor_indexing.h
post_process_descriptor_indexing.cpp
post_process_descriptor_indexing_pass.h
post_process_descriptor_indexing_pass.cpp

# Framework
instruction.h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* limitations under the License.
*/

#include "post_process_descriptor_indexing.h"
#include "post_process_descriptor_indexing_pass.h"
#include "module.h"
#include <iostream>

Expand Down

0 comments on commit 02fb1a0

Please sign in to comment.