Fix issues with unsigned types in GL ES 3 shader class
This commit is contained in:
parent
a0f70c5819
commit
1d01acb486
1 changed files with 2 additions and 1 deletions
|
@ -242,7 +242,8 @@ bool ShaderGLES3::_process_program_state(Version *p_version, bool p_async_forbid
|
|||
case Version::COMPILE_STATUS_SOURCE_PROVIDED: {
|
||||
uint32_t start_compiles_count = p_async_forbidden ? 2 : 0;
|
||||
if (!start_compiles_count) {
|
||||
uint32_t free_async_slots = MAX(0, MIN(max_simultaneous_compiles - active_compiles_count, max_simultaneous_compiles - *compiles_started_this_frame));
|
||||
uint32_t used_async_slots = MAX(active_compiles_count, *compiles_started_this_frame);
|
||||
uint32_t free_async_slots = used_async_slots < active_compiles_count ? active_compiles_count - used_async_slots : 0;
|
||||
start_compiles_count = MIN(2, free_async_slots);
|
||||
}
|
||||
if (start_compiles_count >= 1) {
|
||||
|
|
Loading…
Reference in a new issue