mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-05-13 14:07:08 +03:00
20 lines
255 B
C++
20 lines
255 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace glrage {
|
||
|
|
||
|
class Screenshot
|
||
|
{
|
||
|
public:
|
||
|
void schedule(bool schedule);
|
||
|
void captureScheduled();
|
||
|
void capture();
|
||
|
|
||
|
private:
|
||
|
uint32_t m_index = 0;
|
||
|
bool m_schedule = false;
|
||
|
};
|
||
|
|
||
|
} // namespace glrage
|