wgl: drop unused member

While we're at it, drop trying to re-calculate the max-size from the
max-level. It's not accurate on any drivers where the max-size isn't a
power of two anyway.

Reviewed-by: Neha Bhende <bhenden@vmware.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4307>
This commit is contained in:
Erik Faye-Lund 2019-05-26 10:42:39 +02:00 committed by Marge Bot
parent 0a8da6102d
commit 098d4cf25f
2 changed files with 2 additions and 4 deletions

View file

@ -118,9 +118,8 @@ stw_init(const struct stw_winsys *stw_winsys)
stw_dev->smapi->get_param = stw_get_param;
stw_dev->screen = screen;
stw_dev->max_2d_levels = util_last_bit(screen->get_param(screen,
PIPE_CAP_MAX_TEXTURE_2D_SIZE));
stw_dev->max_2d_length = 1 << (stw_dev->max_2d_levels - 1);
stw_dev->max_2d_length = screen->get_param(screen,
PIPE_CAP_MAX_TEXTURE_2D_SIZE);
InitializeCriticalSection(&stw_dev->ctx_mutex);
InitializeCriticalSection(&stw_dev->fb_mutex);

View file

@ -51,7 +51,6 @@ struct stw_device
struct pipe_screen *screen;
/* Cache some PIPE_CAP_* */
unsigned max_2d_levels;
unsigned max_2d_length;
struct st_api *stapi;