mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
19 lines
254 B
C++
19 lines
254 B
C++
#include "object.h"
|
|
|
|
namespace gl
|
|
{
|
|
class fence
|
|
{
|
|
GLsync sync;
|
|
|
|
public:
|
|
fence();
|
|
~fence();
|
|
|
|
bool is_signalled();
|
|
|
|
fence(const fence&) = delete;
|
|
fence& operator=(const fence&) = delete;
|
|
};
|
|
}
|