mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 11:39:19 +02:00
add gl::fence
This commit is contained in:
15
gl/fence.h
Normal file
15
gl/fence.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "object.h"
|
||||
|
||||
namespace gl
|
||||
{
|
||||
class fence
|
||||
{
|
||||
GLsync sync;
|
||||
|
||||
public:
|
||||
fence();
|
||||
~fence();
|
||||
|
||||
bool is_signalled();
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user