X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fvideo-driver.h;h=4512b9689d46182bcff08272258349f6fb40c437;hb=d6fd925d118daf71de62200a6c5505fa06917f62;hp=64bf068b65dafb2ea7e46309a30af06fe8137e19;hpb=3394d6066c9092a5444c9273f52cea01e2eaf10f;p=guile-irrlicht.git diff --git a/src/video-driver.h b/src/video-driver.h index 64bf068..4512b96 100644 --- a/src/video-driver.h +++ b/src/video-driver.h @@ -38,13 +38,37 @@ extern "C" { irr_video_beginScene (SCM wrapped_video_driver, SCM rest); + SCM + irr_video_drawVertexPrimitiveList (SCM wrapped_video_driver, + SCM vertices, + SCM indices, + 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