{
struct nine_context *context = &device->context;
- if (device->ff.num_vs > 100) {
+ if (device->ff.num_vs > 1024) {
/* could destroy the bound one here, so unbind */
context->pipe->bind_vs_state(context->pipe, NULL);
util_hash_table_foreach(device->ff.ht_vs, nine_ff_ht_delete_cb, NULL);
{
struct nine_context *context = &device->context;
- if (device->ff.num_ps > 100) {
+ if (device->ff.num_ps > 1024) {
/* could destroy the bound one here, so unbind */
context->pipe->bind_fs_state(context->pipe, NULL);
util_hash_table_foreach(device->ff.ht_ps, nine_ff_ht_delete_cb, NULL);