From 53facdccd5b535c358bf931d4c7001afce529568 Mon Sep 17 00:00:00 2001 From: Chad Versace Date: Wed, 18 May 2011 16:14:32 -0700 Subject: hiz: Rename hiz_check_fbo_depth_test() to hiz_run_test_depth_test_fbo() ... in order to impose naming consistency with hiz_run_test_depth_test_window() and future test functions. Signed-off-by: Chad Versace --- tests/hiz/hiz-depth-test-fbo-d24-s8.c | 2 +- tests/hiz/hiz-depth-test-fbo-d24.c | 2 +- tests/hiz/hiz-depth-test-fbo-d24s8.c | 2 +- tests/hiz/hiz-util.c | 2 +- tests/hiz/hiz-util.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'tests') diff --git a/tests/hiz/hiz-depth-test-fbo-d24-s8.c b/tests/hiz/hiz-depth-test-fbo-d24-s8.c index b027174d..8d7fc650 100644 --- a/tests/hiz/hiz-depth-test-fbo-d24-s8.c +++ b/tests/hiz/hiz-depth-test-fbo-d24-s8.c @@ -58,7 +58,7 @@ piglit_init(int argc, char **argv) enum piglit_result piglit_display() { - if (hiz_check_fbo_depth_test(&fbo_options)) + if (hiz_run_test_depth_test_fbo(&fbo_options)) return PIGLIT_PASS; else return PIGLIT_FAIL; diff --git a/tests/hiz/hiz-depth-test-fbo-d24.c b/tests/hiz/hiz-depth-test-fbo-d24.c index 14972649..193e0300 100644 --- a/tests/hiz/hiz-depth-test-fbo-d24.c +++ b/tests/hiz/hiz-depth-test-fbo-d24.c @@ -58,7 +58,7 @@ piglit_init(int argc, char **argv) enum piglit_result piglit_display() { - if (hiz_check_fbo_depth_test(&fbo_options)) + if (hiz_run_test_depth_test_fbo(&fbo_options)) return PIGLIT_PASS; else return PIGLIT_FAIL; diff --git a/tests/hiz/hiz-depth-test-fbo-d24s8.c b/tests/hiz/hiz-depth-test-fbo-d24s8.c index b5bdc75c..53ca958e 100644 --- a/tests/hiz/hiz-depth-test-fbo-d24s8.c +++ b/tests/hiz/hiz-depth-test-fbo-d24s8.c @@ -58,7 +58,7 @@ piglit_init(int argc, char **argv) enum piglit_result piglit_display() { - if (hiz_check_fbo_depth_test(&fbo_options)) + if (hiz_run_test_depth_test_fbo(&fbo_options)) return PIGLIT_PASS; else return PIGLIT_FAIL; diff --git a/tests/hiz/hiz-util.c b/tests/hiz/hiz-util.c index 7ca23afa..ec54add8 100644 --- a/tests/hiz/hiz-util.c +++ b/tests/hiz/hiz-util.c @@ -239,7 +239,7 @@ hiz_delete_fbo(GLuint fbo) } bool -hiz_check_fbo_depth_test(const struct hiz_fbo_options *fbo_options) +hiz_run_test_depth_test_fbo(const struct hiz_fbo_options *fbo_options) { bool pass = true; GLuint fbo = 0; diff --git a/tests/hiz/hiz-util.h b/tests/hiz/hiz-util.h index 50a99da0..271df966 100644 --- a/tests/hiz/hiz-util.h +++ b/tests/hiz/hiz-util.h @@ -90,7 +90,7 @@ void hiz_delete_fbo(GLuint fbo); * \param options Perform the test with an FBO with the given formats. * \return True if test passed. */ -bool hiz_check_fbo_depth_test(const struct hiz_fbo_options *options); +bool hiz_run_test_depth_test_fbo(const struct hiz_fbo_options *options); /** * Check that depth tests work correctly when rendering to the window -- cgit v1.2.3