diff options
author | Michal Krol <[email protected]> | 2009-12-03 10:12:47 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-03 10:12:47 +0100 |
commit | d28740c298968303500a8c43047ded2679e727ac (patch) | |
tree | bb20439f6040083d94fbc21f71a32fcc3f13eae4 /src/gallium/state_trackers/python/tests | |
parent | 3400b668e35469d5dbba515e3a8b9d775fd2eff5 (diff) |
Move pf_is_depth_stencil() to u_format auxiliary module.
Diffstat (limited to 'src/gallium/state_trackers/python/tests')
-rwxr-xr-x | src/gallium/state_trackers/python/tests/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/python/tests/base.py b/src/gallium/state_trackers/python/tests/base.py index 202ccfc3509..b022d073fda 100755 --- a/src/gallium/state_trackers/python/tests/base.py +++ b/src/gallium/state_trackers/python/tests/base.py @@ -47,7 +47,7 @@ for name, value in globals().items(): formats[value] = name def is_depth_stencil_format(format): - # FIXME: make and use binding to pf_is_depth_stencil + # FIXME: make and use binding to util_format_is_depth_or_stencil return format in ( PIPE_FORMAT_Z32_UNORM, PIPE_FORMAT_Z24S8_UNORM, |