diff options
| -rw-r--r-- | src/mesa/shader/slang/slang_compile.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/mesa/shader/slang/slang_compile.c b/src/mesa/shader/slang/slang_compile.c index 4acbe802d2..ccb04494bf 100644 --- a/src/mesa/shader/slang/slang_compile.c +++ b/src/mesa/shader/slang/slang_compile.c @@ -2167,6 +2167,9 @@ _slang_compile(GLcontext *ctx, struct gl_shader *shader)        type = SLANG_UNIT_FRAGMENT_SHADER;     } +   if (!shader->Source) +      return GL_FALSE; +     ctx->Shader.MemPool = _slang_new_mempool(1024*1024);     /* XXX temporary hack */ | 
