mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 20:40:09 +01:00
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:
parent
0a8da6102d
commit
098d4cf25f
2 changed files with 2 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue