mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-05-13 05:57:10 +03:00
19 lines
255 B
C++
19 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
|