Files
test2/intern
Daniel Genrich 2e08b763c5 Bugfix [#30835]: Cycles doesn't work with AMD Juniper GPU, compiller throws errors. Thanks for reporting!
Problem: AMD does not like something like this.
float3 *a;
flaot b = a->x;

You need to circumvent this by using:
float3 *a;
float b = (*a).x;
2012-04-09 15:31:31 +00:00
..
2012-02-27 10:35:39 +00:00
2012-04-06 10:24:15 +00:00
2011-11-15 21:55:07 +00:00
2012-03-24 01:42:08 +00:00