We forgot to update this code as part of D3108. I'd like to include this in 2.90, it's entirely broken now so can't really get any worse. Differential Revision: https://developer.blender.org/D8738
37 lines
867 B
Common Lisp
37 lines
867 B
Common Lisp
#include "kernel/kernel_compat_opencl.h"
|
|
#include "kernel/kernel_math.h"
|
|
#include "kernel/kernel_types.h"
|
|
#include "kernel/kernel_globals.h"
|
|
#include "kernel/kernel_color.h"
|
|
#include "kernel/kernels/opencl/kernel_opencl_image.h"
|
|
|
|
#include "kernel/kernel_path.h"
|
|
#include "kernel/kernel_path_branched.h"
|
|
|
|
#include "kernel/kernel_bake.h"
|
|
|
|
__kernel void kernel_ocl_bake(
|
|
ccl_constant KernelData *data,
|
|
ccl_global float *buffer,
|
|
|
|
KERNEL_BUFFER_PARAMS,
|
|
|
|
int sx, int sy, int sw, int sh, int offset, int stride, int sample)
|
|
{
|
|
KernelGlobals kglobals, *kg = &kglobals;
|
|
|
|
kg->data = data;
|
|
|
|
kernel_set_buffer_pointers(kg, KERNEL_BUFFER_ARGS);
|
|
kernel_set_buffer_info(kg);
|
|
|
|
int x = sx + ccl_global_id(0);
|
|
int y = sy + ccl_global_id(1);
|
|
|
|
if(x < sx + sw && y < sy + sh) {
|
|
#ifndef __NO_BAKING__
|
|
kernel_bake_evaluate(kg, buffer, sample, x, y, offset, stride);
|
|
#endif
|
|
}
|
|
}
|