Ansel 0.0
A darktable fork - bloat + design vision
Loading...
Searching...
No Matches
cairo.c File Reference
#include "lua/cairo.h"
#include "common/darktable.h"
#include "gui/draw.h"
#include "lua/call.h"
#include "lua/lua.h"
#include "lua/types.h"
+ Include dependency graph for cairo.c:

Functions

static int _draw_line (lua_State *L)
 
static int _save (lua_State *L)
 
static int _restore (lua_State *L)
 
static int _new_sub_path (lua_State *L)
 
static int _scale (lua_State *L)
 
static int _translate (lua_State *L)
 
static int _rotate (lua_State *L)
 
static int _move_to (lua_State *L)
 
static int _line_to (lua_State *L)
 
static int _arc (lua_State *L)
 
static int _arc_negative (lua_State *L)
 
static int _rectangle (lua_State *L)
 
int dt_lua_init_cairo (lua_State *L)
 

Function Documentation

◆ _arc()

static int _arc ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _arc_negative()

static int _arc_negative ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _draw_line()

static int _draw_line ( lua_State L)
static

References dt_draw_line().

Referenced by dt_lua_init_cairo().

◆ _line_to()

static int _line_to ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _move_to()

static int _move_to ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _new_sub_path()

static int _new_sub_path ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _rectangle()

static int _rectangle ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _restore()

static int _restore ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _rotate()

static int _rotate ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _save()

static int _save ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _scale()

static int _scale ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ _translate()

static int _translate ( lua_State L)
static

Referenced by dt_lua_init_cairo().

◆ dt_lua_init_cairo()