Merge pull request #9 from Talon1024/master

Fix GCC compilation errors
This commit is contained in:
Magnus Norddahl 2022-01-25 16:48:42 +01:00 committed by GitHub
commit 6729561354
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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: