diff options
author | Luca Barbieri <[email protected]> | 2010-04-02 01:43:49 +0200 |
---|---|---|
committer | Luca Barbieri <[email protected]> | 2010-04-02 02:31:43 +0200 |
commit | aee5bb5b8ad80d4aed849519a80b1d696991e866 (patch) | |
tree | b98b8570bbc11c3aa72253bef2e1d3260cc8fd71 /progs | |
parent | ecaaf8c15f98551f809d5219f87af7fdb451c029 (diff) |
gallium/util: add util_format_init that inits s3tc and util_half
Switch from auto-init to explicit init for util_half per Brian Paul's
indication.
NOTE: this is probably broken because not enough things call util_format_init.
Will be fixed shortly
Diffstat (limited to 'progs')
-rw-r--r-- | progs/gallium/unit/u_format_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/gallium/unit/u_format_test.c b/progs/gallium/unit/u_format_test.c index ca4c92f5b7e..dcdbf6548de 100644 --- a/progs/gallium/unit/u_format_test.c +++ b/progs/gallium/unit/u_format_test.c @@ -404,7 +404,7 @@ int main(int argc, char **argv) { boolean success; - util_format_s3tc_init(); + util_format_init(); success = test_all(); |