Blender Git Commit Log
Git Commits -> Revision 2e08b76
Revision 2e08b76 by Daniel Genrich (master) April 9, 2012, 15:31 (GMT) |
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; |
Commit Details:
Full Hash: 2e08b763c5e4b9514ce033fa6810cc0b5d332ae0
SVN Revision: 45490
Parent Commit: 25492d1
Lines Changed: +1, -1
1 Modified Path:
/intern/cycles/kernel/kernel_accumulate.h (+1, -1) (Diff)