diff options
author | Kenneth Graunke <[email protected]> | 2013-09-27 11:34:09 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-10-13 00:10:44 -0700 |
commit | 8d315b25830de88108a87b2d555d54f7691e7983 (patch) | |
tree | c5fb750be6980f5b8e86c21c46a60a90a266dba0 /src | |
parent | fc5b865cec99c34586b2f5484c46af419b2a0395 (diff) |
i965: Move memset of TextureFormatSupported to brw_init_surface_formats.
brw_init_surface_formats already sets entries in TextureFormatsSupported
to true; it may as well take care of initializing it to false too.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_surface_formats.c | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_context.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_surface_formats.c b/src/mesa/drivers/dri/i965/brw_surface_formats.c index 86663365301..7afca79819a 100644 --- a/src/mesa/drivers/dri/i965/brw_surface_formats.c +++ b/src/mesa/drivers/dri/i965/brw_surface_formats.c @@ -532,6 +532,8 @@ brw_init_surface_formats(struct brw_context *brw) int gen; gl_format format; + memset(&ctx->TextureFormatSupported, 0, sizeof(ctx->TextureFormatSupported)); + gen = brw->gen * 10; if (brw->is_g4x) gen += 5; diff --git a/src/mesa/drivers/dri/i965/intel_context.c b/src/mesa/drivers/dri/i965/intel_context.c index 154b05293fd..8a48e632748 100644 --- a/src/mesa/drivers/dri/i965/intel_context.c +++ b/src/mesa/drivers/dri/i965/intel_context.c @@ -380,9 +380,6 @@ intelInitContext(struct brw_context *brw, functions->Viewport = intel_viewport; } - memset(&ctx->TextureFormatSupported, - 0, sizeof(ctx->TextureFormatSupported)); - /* Estimate the size of the mappable aperture into the GTT. There's an * ioctl to get the whole GTT size, but not one to get the mappable subset. * It turns out it's basically always 256MB, though some ancient hardware |