blob: 8645da7922a18ec0cadd7b06747eb33ed49ecea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef OFFSCREENCONTEXT_H_
#define OFFSCREENCONTEXT_H_
#include <iostream>
#include <string>
struct OffscreenContext *create_offscreen_context(int w, int h);
void bind_offscreen_context(OffscreenContext *ctx);
bool teardown_offscreen_context(OffscreenContext *ctx);
bool save_framebuffer(OffscreenContext *ctx, const char *filename);
std::string offscreen_context_getinfo(OffscreenContext *ctx);
#endif
|