diff options
author | Luca Barbieri <luca@luca-barbieri.com> | 2010-04-02 04:51:50 +0200 |
---|---|---|
committer | Luca Barbieri <luca@luca-barbieri.com> | 2010-04-02 06:16:30 +0200 |
commit | 2a090ae80a597f498f113fe58a772ddf3dca12e0 (patch) | |
tree | c4758cfc46be0654b4e4cecff435fe56494dcd2b /src/gallium/drivers/nv50/nv50_context.c | |
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/nv50/nv50_context.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.c b/src/gallium/drivers/nv50/nv50_context.c index 0de75a70b9..92b194a8f8 100644 --- a/src/gallium/drivers/nv50/nv50_context.c +++ b/src/gallium/drivers/nv50/nv50_context.c @@ -71,8 +71,6 @@ nv50_create(struct pipe_screen *pscreen, void *priv) struct nv50_screen *screen = nv50_screen(pscreen); struct nv50_context *nv50; - util_format_init(); - nv50 = CALLOC_STRUCT(nv50_context); if (!nv50) return NULL; |