From 24ebefbbd38538bc85ae94cd3dfbb16a4abf0d98 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 18 Nov 2017 11:07:37 +0100 Subject: [PATCH] Rename .compute to .comp, to be in line with the Khronos reference compiler. --- compute_shader_test.cpp | 2 +- identity.compute => identity.comp | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename identity.compute => identity.comp (100%) diff --git a/compute_shader_test.cpp b/compute_shader_test.cpp index 7179f82..5a74f40 100644 --- a/compute_shader_test.cpp +++ b/compute_shader_test.cpp @@ -21,7 +21,7 @@ public: IdentityComputeEffect() {} virtual string effect_type_id() const { return "IdentityComputeEffect"; } virtual bool is_compute_shader() const { return true; } - string output_fragment_shader() { return read_file("identity.compute"); } + string output_fragment_shader() { return read_file("identity.comp"); } }; TEST(ComputeShaderTest, Identity) { diff --git a/identity.compute b/identity.comp similarity index 100% rename from identity.compute rename to identity.comp -- 2.39.2