mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
nvfx: allocate buffers in GART if !NOUVEAU_SWTNL
Should improve performance and fix serious regressions on AGP cards.
This commit is contained in:
parent
8f0d5382e3
commit
f9c665e9e6
1 changed files with 1 additions and 2 deletions
|
|
@ -70,9 +70,8 @@ nvfx_screen_get_param(struct pipe_screen *pscreen, int param)
|
|||
case PIPE_CAP_BLEND_EQUATION_SEPARATE:
|
||||
return !!screen->is_nv4x;
|
||||
case NOUVEAU_CAP_HW_VTXBUF:
|
||||
return 0;
|
||||
case NOUVEAU_CAP_HW_IDXBUF:
|
||||
return 0;
|
||||
return !screen->force_swtnl;
|
||||
case PIPE_CAP_MAX_COMBINED_SAMPLERS:
|
||||
return 16;
|
||||
case PIPE_CAP_INDEP_BLEND_ENABLE:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue