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-04-07 18:26:54 +00:00
2012-04-05 09:41:55 +00:00
2012-03-30 10:37:39 +00:00
2012-04-09 11:38:43 +00:00
2010-10-13 14:44:22 +00:00
2012-03-01 12:20:18 +00:00
Description
No description provided
841 MiB
Languages
C++ 78%
Python 14.9%
C 2.9%
GLSL 1.9%
CMake 1.2%
Other 0.9%