mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
Double amount of memory allocated for generated shader code.
The code generated for the glxgears vertex shader didn't fit, causing a crash.
This commit is contained in:
parent
344464bf2e
commit
86a03e43ce
1 changed files with 1 additions and 1 deletions
|
|
@ -1125,7 +1125,7 @@ struct x86_reg x86_fn_arg( struct x86_function *p,
|
|||
|
||||
void x86_init_func( struct x86_function *p )
|
||||
{
|
||||
x86_init_func_size(p, 1024);
|
||||
x86_init_func_size(p, 2048);
|
||||
}
|
||||
|
||||
void x86_init_func_size( struct x86_function *p, unsigned code_size )
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue