diff options
author | Luca Barbieri <[email protected]> | 2010-04-02 04:51:50 +0200 |
---|---|---|
committer | Luca Barbieri <[email protected]> | 2010-04-02 06:16:30 +0200 |
commit | 2a090ae80a597f498f113fe58a772ddf3dca12e0 (patch) | |
tree | c4758cfc46be0654b4e4cecff435fe56494dcd2b /src/gallium/drivers/softpipe | |
parent | 5126683e3b971ccfb51e50e560750ce44e86bae8 (diff) |
gallium/util: revert util_format_init addition
Putting calls to util_format_init all over the codebase is infeasible.
Instead, half float tables are pregenerated, and the s3tc library is
loaded on demand.
I believe this is a solution that combines performance, cleanliness,
flexibility and portability.
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index df527f5cb15..5c1012b4006 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -224,7 +224,7 @@ softpipe_create_screen(struct sw_winsys *winsys) screen->base.context_create = softpipe_create_context; screen->base.flush_frontbuffer = softpipe_flush_frontbuffer; - util_format_init(); + util_format_s3tc_init(); softpipe_init_screen_texture_funcs(&screen->base); softpipe_init_screen_buffer_funcs(&screen->base); |