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

__global__ void render(uint8_t *image) {
  Scene scene;
  scene.debug();
  //scene.render(image);
}