summaryrefslogtreecommitdiff
path: root/kernel.cu
blob: c6895dce4fc0e1c7fd51de65c17294d3b3ecd89b (plain)
1
2
3
4
5
6
7
8
9
#include <curand.h>
#include <stdint.h>
#include <stdio.h>
#include "scene.cuh"

__global__ void render(uint8_t *image) {
  scene<float> scene;
  //scene.render(image);
}