mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
24 lines
530 B
C++
24 lines
530 B
C++
#ifndef LOVE_GRAPHICS_OPENGL_WRAP_PROGRAM_H
|
|
#define LOVE_GRAPHICS_OPENGL_WRAP_PROGRAM_H
|
|
|
|
#include <common/runtime.h>
|
|
#include "PixelEffect.h"
|
|
|
|
namespace love
|
|
{
|
|
namespace graphics
|
|
{
|
|
namespace opengl
|
|
{
|
|
PixelEffect * luax_checkpixeleffect(lua_State * L, int idx);
|
|
int w_PixelEffect_getWarnings(lua_State * L);
|
|
int w_PixelEffect_sendFloat(lua_State * L);
|
|
int w_PixelEffect_sendMatrix(lua_State * L);
|
|
int w_PixelEffect_sendImage(lua_State * L);
|
|
int luaopen_pixeleffect(lua_State * L);
|
|
} // opengl
|
|
} // graphics
|
|
} // love
|
|
|
|
#endif
|