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