Code cleanup / Cycles: else/if for SSE41 kernel functions.

This commit is contained in:
Thomas Dinges 2014-01-06 03:22:14 +01:00
parent 56081d596e
commit ce6dce3b13

@ -307,6 +307,7 @@ public:
kernel_cpu_sse41_convert_to_byte(&kernel_globals, (uchar4*)task.rgba_byte, (float*)task.buffer, kernel_cpu_sse41_convert_to_byte(&kernel_globals, (uchar4*)task.rgba_byte, (float*)task.buffer,
sample_scale, x, y, task.offset, task.stride); sample_scale, x, y, task.offset, task.stride);
} }
else
#endif #endif
if(system_cpu_support_sse3()) { if(system_cpu_support_sse3()) {
for(int y = task.y; y < task.y + task.h; y++) for(int y = task.y; y < task.y + task.h; y++)
@ -349,6 +350,7 @@ public:
break; break;
} }
} }
else
#endif #endif
if(system_cpu_support_sse3()) { if(system_cpu_support_sse3()) {
for(int x = task.shader_x; x < task.shader_x + task.shader_w; x++) { for(int x = task.shader_x; x < task.shader_x + task.shader_w; x++) {