]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/bindings/video.scm
ec117b3a751dada87f166fd40503136cd05b880e
[guile-irrlicht.git] / irrlicht / bindings / video.scm
1 ;;; guile-irrlicht --- FFI bindings for Irrlicht Engine
2 ;;; Copyright (C) 2019 Javier Sancho <jsf@jsancho.org>
3 ;;;
4 ;;; This file is part of guile-irrlicht.
5 ;;;
6 ;;; Guile-irrlicht is free software; you can redistribute it and/or modify
7 ;;; it under the terms of the GNU Lesser General Public License as
8 ;;; published by the Free Software Foundation; either version 3 of the
9 ;;; License, or (at your option) any later version.
10 ;;;
11 ;;; Guile-irrlicht is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ;;; General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU Lesser General Public
17 ;;; License along with guile-irrlicht.  If not, see
18 ;;; <http://www.gnu.org/licenses/>.
19
20
21 (define-module (irrlicht bindings video)
22   #:use-module (system foreign)
23   #:use-module (irrlicht util))
24
25 ;; E_DRIVER_TYPE enum
26 (define-public EDT_NULL            0)
27 (define-public EDT_SOFTWARE        1)
28 (define-public EDT_BURNINGSVIDEO   2)
29 (define-public EDT_DIRECT3D8       3)
30 (define-public EDT_DIRECT3D9       4)
31 (define-public EDT_OPENGL          5)
32 (define-public EDT_COUNT           6)
33
34 ;; irr_video_E_MATERIAL_FLAG enum
35 (define-public EMF_WIREFRAME             #x1)
36 (define-public EMF_POINTCLOUD            #x2)
37 (define-public EMF_GOURAUD_SHADING       #x4)
38 (define-public EMF_LIGHTING              #x8)
39 (define-public EMF_ZBUFFER              #x10)
40 (define-public EMF_ZWRITE_ENABLE        #x20)
41 (define-public EMF_BACK_FACE_CULLING    #x40)
42 (define-public EMF_FRONT_FACE_CULLING   #x80)
43 (define-public EMF_BILINEAR_FILTER     #x100)
44 (define-public EMF_TRILINEAR_FILTER    #x200)
45 (define-public EMF_ANISOTROPIC_FILTER  #x400)
46 (define-public EMF_FOG_ENABLE          #x800)
47 (define-public EMF_NORMALIZE_NORMALS  #x1000)
48 (define-public EMF_TEXTURE_WRAP       #x2000)
49 (define-public EMF_ANTI_ALIASING      #x4000)
50 (define-public EMF_COLOR_MASK         #x8000)
51 (define-public EMF_COLOR_MATERIAL    #x10000)
52 (define-public EMF_USE_MIP_MAPS      #x20000)
53 (define-public EMF_BLEND_OPERATION   #x40000)
54 (define-public EMF_POLYGON_OFFSET    #x80000)
55
56
57 ;; scolor struct
58 (define-public scolor
59   (list uint8 uint8 uint8 uint8))
60
61 ;; Driver functions
62 (define-foreign begin-scene
63   int "irr_video_beginScene" (list '* int int '* '* '*))
64
65 (define-foreign end-scene
66   int "irr_video_endScene" (list '*))
67
68 (define-foreign get-fps
69   int "irr_video_getFPS" (list '*))
70
71 (define-foreign get-texture
72   '* "irr_video_getTexture" (list '* '*))
73
74 (define-foreign get-video-driver-name
75   '* "irr_video_getName" (list '*))