From: Steinar H. Gunderson Date: Sat, 18 Nov 2017 10:07:37 +0000 (+0100) Subject: Rename .compute to .comp, to be in line with the Khronos reference compiler. X-Git-Tag: 1.6.0~64 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=24ebefbbd38538bc85ae94cd3dfbb16a4abf0d98 Rename .compute to .comp, to be in line with the Khronos reference compiler. --- 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