blob: 00e42dba1c8386a595e52c3a105ee316f23dd062 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include "main.h"
#include "state.h"
#include "lua_core.h"
#include "lrlgl.h"
/*
## RLGL - General render state
*/
/*
> success = RL.rlSetLineWidth( float width )
Set the line drawing width
- Failure return false
- Success return true
*/
int lrlglSetLineWidth( lua_State *L ) {
if ( !lua_isnumber( L, 1 ) ) {
TraceLog( LOG_WARNING, "%s", "Bad call of function. RL.rlSetLineWidth( float width )" );
lua_pushboolean( L, false );
return 1;
}
rlSetLineWidth( lua_tonumber( L, 1 ) );
lua_pushboolean( L, true );
return 1;
}
/*
> width = RL.rlGetLineWidth()
Get the line drawing width
- Success return float
*/
int lrlglGetLineWidth( lua_State *L ) {
lua_pushnumber( L, rlGetLineWidth() );
return 1;
}
/*
## RLGL - Initialization functions
*/
/*
> version = RL.rlGetVersion()
Get current OpenGL version
- Success return int
*/
int lrlglGetVersion( lua_State *L ) {
lua_pushinteger( L, rlGetVersion() );
return 1;
}
|