Re: [Mesa-dev] [PATCH 1/2] linker: Wrap access of producer_var with a NULL check

2014-12-01 Thread Jordan Justen
On 2014-12-01 15:46:10, Ian Romanick wrote: > From: Ian Romanick > > producer_var could be NULL if consumer_var is not NULL and > consumer_is_fs is false. This will occur when the procuder is NULL and typo: procuder Series Reviewed-by: Jordan Justen > the consumer is the geometry shader for

[Mesa-dev] [PATCH 1/2] linker: Wrap access of producer_var with a NULL check

2014-12-01 Thread Ian Romanick
From: Ian Romanick producer_var could be NULL if consumer_var is not NULL and consumer_is_fs is false. This will occur when the procuder is NULL and the consumer is the geometry shader for a program that contains only a geometry shader. This will occur starting with the next patch. Signed-off-