mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 06:30:10 +01:00
glsl: fix scons builds with shader cache
For now its disabled for scons so wrap glsl cache calls in a define conditional.
This commit is contained in:
parent
a2bf0954fb
commit
172c48cc15
2 changed files with 4 additions and 0 deletions
|
|
@ -4626,6 +4626,7 @@ link_shaders(struct gl_context *ctx, struct gl_shader_program *prog)
|
|||
return;
|
||||
}
|
||||
|
||||
#ifdef ENABLE_SHADER_CACHE
|
||||
/* If transform feedback used on the program then compile all shaders. */
|
||||
bool skip_cache = false;
|
||||
if (prog->TransformFeedback.NumVarying > 0) {
|
||||
|
|
@ -4640,6 +4641,7 @@ link_shaders(struct gl_context *ctx, struct gl_shader_program *prog)
|
|||
|
||||
if (!skip_cache && shader_cache_read_program_metadata(ctx, prog))
|
||||
return;
|
||||
#endif
|
||||
|
||||
void *mem_ctx = ralloc_context(NULL); // temporary linker context
|
||||
|
||||
|
|
|
|||
|
|
@ -3130,8 +3130,10 @@ _mesa_glsl_link_shader(struct gl_context *ctx, struct gl_shader_program *prog)
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef ENABLE_SHADER_CACHE
|
||||
if (prog->data->LinkStatus)
|
||||
shader_cache_write_program_metadata(ctx, prog);
|
||||
#endif
|
||||
}
|
||||
|
||||
} /* extern "C" */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue