mirror of
https://github.com/ZDoom/ZDRay.git
synced 2024-11-22 12:01:09 +00:00
commit
6729561354
3 changed files with 3 additions and 1 deletions
|
@ -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"
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
class LightmapTexture
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue