]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/video-driver.h
video-driver
[guile-irrlicht.git] / src / video-driver.h
index 0957836e62b94d6618564329be057592d3b545fd..d1b4babf824029369d95a192b786c59e6f5871f6 100644 (file)
 
 #include <irrlicht/irrlicht.h>
 #include <libguile.h>
-#include "wrapped.h"
 
 extern "C" {
-
   void
   init_video_driver (void);
-
-  DECLARE_WRAPPED_TYPE (irr::video::IVideoDriver*, init_video_driver_type,
-                        video_driver_p, wrap_video_driver, unwrap_video_driver);
-
-  SCM
-  irr_video_beginScene (SCM wrapped_video_driver,
-                        SCM rest);
-
-  SCM
-  irr_guiscene_drawAll (SCM wrapped_obj);
-
-  SCM
-  irr_video_endScene (SCM wrapped_video_driver);
-
-  SCM
-  irr_video_getTexture (SCM wrapped_video_driver,
-                        SCM filename);
-
-  SCM
-  irr_getVideoDriver (SCM wrapped_obj);
-
 }
 
+irr::video::E_TRANSFORMATION_STATE
+scm_to_transformation_state (SCM transformation_state);
+
 #endif