diff options
author | Jason Ekstrand <jason.ekstrand@intel.com> | 2016-02-15 16:50:22 -0800 |
---|---|---|
committer | Jason Ekstrand <jason.ekstrand@intel.com> | 2016-02-15 16:52:13 -0800 |
commit | 206f999f575d8a9b95703aac5c6dd6516c6df865 (patch) | |
tree | 311b5c77e4158e65302ce336ccc13a2a4e89ccc1 | |
parent | 5b40e05352099760b5199411fbb8f8bd1f3aa5b2 (diff) |
Move the fragcoord test to the "shader" folder
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | src/tests/func/shader/fragcoord.c (renamed from src/tests/func/input/fragcoord.c) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index d8eb726..40e1d22 100644 --- a/Makefile.am +++ b/Makefile.am @@ -88,10 +88,10 @@ bin_crucible_SOURCES = \ src/tests/func/compute.c \ src/tests/func/compute-local-id.c \ src/tests/func/compute-num-workgroups.c \ - src/tests/func/input/fragcoord.c \ src/tests/func/interleaved-cmd-buffers.c \ src/tests/func/miptree/miptree.c \ src/tests/func/push-constants/basic.c \ + src/tests/func/shader/fragcoord.c \ src/tests/func/ssbo/interleave.c \ src/tests/func/renderpass/clear.c \ src/tests/stress/lots-of-surface-state.c \ @@ -121,10 +121,10 @@ BUILT_SOURCES = \ src/tests/func/compute-spirv.h \ src/tests/func/compute-local-id-spirv.h \ src/tests/func/compute-num-workgroups-spirv.h \ - src/tests/func/input/fragcoord-spirv.h \ src/tests/func/miptree/miptree-spirv.h \ src/tests/func/miptree/miptree_gen.c \ src/tests/func/push-constants/basic-spirv.h \ + src/tests/func/shader/fragcoord-spirv.h \ src/tests/func/ssbo/interleave-spirv.h \ src/tests/stress/lots-of-surface-state-spirv.h diff --git a/src/tests/func/input/fragcoord.c b/src/tests/func/shader/fragcoord.c index 6e5a056..86d0683 100644 --- a/src/tests/func/input/fragcoord.c +++ b/src/tests/func/shader/fragcoord.c @@ -154,7 +154,7 @@ test_fragcoord(void) } test_define { - .name = "func.input.fragcoord", + .name = "func.shader.fragcoord", .start = test_fragcoord, .image_filename = "32x32-green.ref.png", }; |