svga: Fix texture cube param cap
Spotted by Thomas Hellstrom. Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com> Signed-off-by: Jakob Bornecrantz <jakob@vmware.com>
This commit is contained in:
@@ -185,8 +185,8 @@ svga_get_param(struct pipe_screen *screen, enum pipe_cap param)
|
||||
* No mechanism to query the host, and at least limited to 2048x2048 on
|
||||
* certain hardware.
|
||||
*/
|
||||
return MIN2(screen->get_paramf(screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS),
|
||||
12.0 /* 2048x2048 */);
|
||||
return MIN2(screen->get_param(screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS),
|
||||
12 /* 2048x2048 */);
|
||||
|
||||
case PIPE_CAP_BLEND_EQUATION_SEPARATE: /* req. for GL 1.5 */
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user