Fix GCC compilation errors

This commit is contained in:
Kevin Caccamo 2022-01-25 10:19:17 -05:00
parent 0772f148c4
commit 9ae145358f
No known key found for this signature in database
GPG key ID: 483F90E1F56A8723
3 changed files with 3 additions and 1 deletions

View file

@ -13,6 +13,7 @@
#include <limits>
#include <condition_variable>
#include <mutex>
#include <thread>
#include "glsl_rgen_bounce.h"
#include "glsl_rgen_light.h"
#include "glsl_rgen_ambient.h"

View file

@ -1,6 +1,7 @@
#pragma once
#include <cstdint>
#include <vector>
class LightmapTexture

View file

@ -13,7 +13,7 @@ public:
DataBuffer(int size) : size(size) { data = new uint8_t[size]; }
~DataBuffer() { delete[] data; }
int size;
void* data;
uint8_t* data;
};
private: