3d_fractals_cuda/kernel.cu

10 lines
171 B
Plaintext

#include <curand.h>
#include <stdint.h>
#include <stdio.h>
#include "scene.cuh"
__global__ void render(uint8_t *image) {
scene<float> scene;
//scene.render(image);
}