diff options
author | Eric Anholt <[email protected]> | 2010-09-23 17:17:08 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-01-04 14:14:17 -0800 |
commit | 001d944fd50e0579739b8865e6e09be5d267c05a (patch) | |
tree | c41e3154694c30f0bb66501be24d2daef437f914 /src/mesa/main/context.c | |
parent | 6530944b502a0f35b305ee35c1c6f1e32a887721 (diff) |
mesa: Make _mesa_choose_tex_format() choose formats out of a supported table.
Right now this is just tweaking the current code to look at the table.
Choosing actually supported formats will come later.
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index f42a566c302..2c57c8d4cbb 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -955,6 +955,14 @@ _mesa_initialize_context_for_api(struct gl_context *ctx, ctx->FragmentProgram._MaintainTexEnvProgram = GL_TRUE; } + /* Mesa core handles all the formats that mesa core knows about. + * Drivers will want to override this list with just the formats + * they can handle, and confirm that appropriate fallbacks exist in + * _mesa_choose_tex_format(). + */ + memset(&ctx->TextureFormatSupported, GL_TRUE, + sizeof(ctx->TextureFormatSupported)); + switch (ctx->API) { case API_OPENGL: #if FEATURE_dlist |