diff options
author | Chad Versace <chad.versace@intel.com> | 2011-04-28 14:52:01 -0700 |
---|---|---|
committer | Chad Versace <chad.versace@intel.com> | 2011-04-28 14:54:21 -0700 |
commit | d69e9c40b734192fa48aa32ac561944d349494dd (patch) | |
tree | 0982d671a3f506899d066ca3796f897b8fb8b269 /tests/hiz | |
parent | aee9bc2891fcfbbf5a7799439bcba99a77fb39e5 (diff) |
hiz: Fix typo in extension requirement
Change extension requirement from GL_ARB_fbo to GL_ARB_framebuffer_object.
Signed-off-by: Chad Versace <chad.versace@intel.com>
Diffstat (limited to 'tests/hiz')
-rw-r--r-- | tests/hiz/hiz-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hiz/hiz-util.c b/tests/hiz/hiz-util.c index cf79fa71b..ccafc8372 100644 --- a/tests/hiz/hiz-util.c +++ b/tests/hiz/hiz-util.c @@ -245,7 +245,7 @@ hiz_check_fbo_depth_test(const struct hiz_fbo_options *fbo_options) bool pass = true; GLuint fbo = 0; - piglit_require_extension("GL_ARB_fbo"); + piglit_require_extension("GL_ARB_framebuffer_object"); /* Create and bind FBO. */ fbo = hiz_make_fbo(fbo_options); |