3d_fractals_cuda/kernel.cuh

6 lines
101 B
Plaintext

#ifndef KERNEL_H
#define KERNEL_H
#include <stdint.h>
__global__ void render(uint8_t *image);
#endif