azrp: bump command limit to 1024

It used to be 256 due to XYRAM limits but it's easy to hit.
This commit is contained in:
Lephenixnoir 2022-08-20 20:54:52 +02:00
parent cc66d3a520
commit 8448467cd4
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ extern uint16_t *azrp_frag;
/* Maximum number of commands that can be queued. (This is only one of two
limits, the other being the size of the command data.) */
#define AZRP_MAX_COMMANDS 256
#define AZRP_MAX_COMMANDS 1024
/* Maximum number of shaders that can be defined. (This is a loose limit). */
#define AZRP_MAX_SHADERS 32