From: Ilia Mirkin Date: Tue, 11 Feb 2014 05:42:26 +0000 (-0500) Subject: nv30,nvc0: only claim a single viewport X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=908a711313b7b87c6475a2635af83341559406d2;p=mesa.git nv30,nvc0: only claim a single viewport It should be possible to make this be 16 on nvc0. Signed-off-by: Ilia Mirkin Reviewed-by: Emil Velikov --- diff --git a/src/gallium/drivers/nouveau/nv30/nv30_screen.c b/src/gallium/drivers/nouveau/nv30/nv30_screen.c index 8eee06bbb5d..c027a5f3130 100644 --- a/src/gallium/drivers/nouveau/nv30/nv30_screen.c +++ b/src/gallium/drivers/nouveau/nv30/nv30_screen.c @@ -84,6 +84,8 @@ nv30_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param) return 0; case PIPE_CAP_CONSTANT_BUFFER_OFFSET_ALIGNMENT: return 16; + case PIPE_CAP_MAX_VIEWPORTS: + return 1; /* nv4x capabilities */ case PIPE_CAP_BLEND_EQUATION_SEPARATE: case PIPE_CAP_NPOT_TEXTURES: diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index f84c41b4979..28d9be24bbe 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -175,6 +175,8 @@ nvc0_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param) return PIPE_ENDIAN_LITTLE; case PIPE_CAP_TGSI_VS_LAYER: return 0; + case PIPE_CAP_MAX_VIEWPORTS: + return 1; default: NOUVEAU_ERR("unknown PIPE_CAP %d\n", param); return 0;