lsnes/include/library/lua-framebuffer.hpp
Ilari Liusvaara 436b1d183d Remove partial exception specifiers
These are deprecated in newer C++ versions.
2019-01-30 19:26:21 +02:00

24 lines
545 B
C++

#ifndef _library__lua_framebuffer__hpp__included__
#define _library__lua_framebuffer__hpp__included__
#include "lua-base.hpp"
#include "framebuffer.hpp"
namespace lua
{
struct render_context
{
uint32_t left_gap;
uint32_t right_gap;
uint32_t top_gap;
uint32_t bottom_gap;
struct framebuffer::queue* queue;
uint32_t width;
uint32_t height;
};
framebuffer::color get_fb_color(lua::state& L, int index, const std::string& fname);
framebuffer::color get_fb_color(lua::state& L, int index, const std::string& fname, int64_t dflt);
}
#endif