mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
st/nine: Change the value of some advertised caps
These values are taken from wine. Reviewed-by: Tiziano Bacocco <tizbac2@gmail.com> Signed-off-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
parent
25f1e5584c
commit
34292754d2
1 changed files with 3 additions and 3 deletions
|
|
@ -731,7 +731,7 @@ NineAdapter9_GetDeviceCaps( struct NineAdapter9 *This,
|
|||
D3DPIPECAP(TWO_SIDED_STENCIL, D3DSTENCILCAPS_TWOSIDED);
|
||||
|
||||
pCaps->FVFCaps =
|
||||
(D3DFVFCAPS_TEXCOORDCOUNTMASK & 0xff) |
|
||||
8 | /* 8 textures max */
|
||||
/*D3DFVFCAPS_DONOTSTRIPELEMENTS |*/
|
||||
D3DFVFCAPS_PSIZE;
|
||||
|
||||
|
|
@ -787,8 +787,8 @@ NineAdapter9_GetDeviceCaps( struct NineAdapter9 *This,
|
|||
|
||||
pCaps->MaxPointSize = screen->get_paramf(screen, PIPE_CAPF_MAX_POINT_WIDTH);
|
||||
|
||||
pCaps->MaxPrimitiveCount = 0xFFFFF; /* <- wine, really 0xFFFFFFFF; */
|
||||
pCaps->MaxVertexIndex = 0xFFFFF; /* <- wine, really 0xFFFFFFFF */
|
||||
pCaps->MaxPrimitiveCount = 0x555555; /* <- wine, really 0xFFFFFFFF; */
|
||||
pCaps->MaxVertexIndex = 0xFFFFFF; /* <- wine, really 0xFFFFFFFF */
|
||||
pCaps->MaxStreams =
|
||||
_min(screen->get_shader_param(screen,
|
||||
PIPE_SHADER_VERTEX, PIPE_SHADER_CAP_MAX_INPUTS),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue