Fix include guards for SPV -> SPIRV
Bug: tint:3 Change-Id: I34a7c8e7dd0116968d2614441b3bcb81d7e5c4e7 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/17202 Reviewed-by: dan sinclair <dsinclair@google.com>
This commit is contained in:
parent
4df5d409c4
commit
881cdede29
|
@ -12,8 +12,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef SRC_READER_SPV_FAIL_STREAM_H_
|
||||
#define SRC_READER_SPV_FAIL_STREAM_H_
|
||||
#ifndef SRC_READER_SPIRV_FAIL_STREAM_H_
|
||||
#define SRC_READER_SPIRV_FAIL_STREAM_H_
|
||||
|
||||
#include <ostream>
|
||||
|
||||
|
@ -71,4 +71,4 @@ class FailStream {
|
|||
} // namespace reader
|
||||
} // namespace tint
|
||||
|
||||
#endif // SRC_READER_SPV_FAIL_STREAM_H_
|
||||
#endif // SRC_READER_SPIRV_FAIL_STREAM_H_
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef SRC_READER_SPV_PARSER_H_
|
||||
#define SRC_READER_SPV_PARSER_H_
|
||||
#ifndef SRC_READER_SPIRV_PARSER_H_
|
||||
#define SRC_READER_SPIRV_PARSER_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
|
@ -51,4 +51,4 @@ class Parser : public Reader {
|
|||
} // namespace reader
|
||||
} // namespace tint
|
||||
|
||||
#endif // SRC_READER_SPV_PARSER_H_
|
||||
#endif // SRC_READER_SPIRV_PARSER_H_
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef SRC_READER_SPV_PARSER_IMPL_H_
|
||||
#define SRC_READER_SPV_PARSER_IMPL_H_
|
||||
#ifndef SRC_READER_SPIRV_PARSER_IMPL_H_
|
||||
#define SRC_READER_SPIRV_PARSER_IMPL_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
|
@ -134,4 +134,4 @@ class ParserImpl : Reader {
|
|||
} // namespace reader
|
||||
} // namespace tint
|
||||
|
||||
#endif // SRC_READER_SPV_PARSER_IMPL_H_
|
||||
#endif // SRC_READER_SPIRV_PARSER_IMPL_H_
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef SRC_READER_SPV_SPIRV_TOOLS_HELPERS_TEST_H_
|
||||
#define SRC_READER_SPV_SPIRV_TOOLS_HELPERS_TEST_H_
|
||||
#ifndef SRC_READER_SPIRV_SPIRV_TOOLS_HELPERS_TEST_H_
|
||||
#define SRC_READER_SPIRV_SPIRV_TOOLS_HELPERS_TEST_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
|
@ -33,4 +33,4 @@ std::vector<uint32_t> Assemble(const std::string& spirv_assembly);
|
|||
} // namespace reader
|
||||
} // namespace tint
|
||||
|
||||
#endif // SRC_READER_SPV_SPIRV_TOOLS_HELPERS_TEST_H_
|
||||
#endif // SRC_READER_SPIRV_SPIRV_TOOLS_HELPERS_TEST_H_
|
||||
|
|
Loading…
Reference in New Issue