X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fvideo-driver.h;h=d697e5b5febad6a9412e0af53ee2854f3b9c52eb;hb=5e5b0caed972e0b225199551aff09c399edb8d3c;hp=65df39ace0802f173714372cc338f0215ee40b65;hpb=704cf6c2cc3d308c625071f6e03bd20ed2d833f8;p=guile-irrlicht.git diff --git a/src/video-driver.h b/src/video-driver.h index 65df39a..d697e5b 100644 --- a/src/video-driver.h +++ b/src/video-driver.h @@ -36,19 +36,33 @@ extern "C" { SCM irr_video_beginScene (SCM wrapped_video_driver, - SCM back_buffer, - SCM z_buffer, - SCM color, - SCM video_data, - SCM source_rect); + SCM rest); + + SCM + irr_video_endScene (SCM wrapped_video_driver); + + SCM + irr_video_getFPS (SCM wrapped_video_driver); SCM irr_video_getTexture (SCM wrapped_video_driver, SCM filename); + SCM + irr_video_setMaterial (SCM wrapped_video_driver, + SCM material); + + SCM + irr_video_setTransform (SCM wrapped_video_driver, + SCM state, + SCM mat); + SCM irr_getVideoDriver (SCM wrapped_obj); + irr::video::E_TRANSFORMATION_STATE + scm_to_transformation_state (SCM transformation_state); + } #endif