X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fvideo-driver.h;h=0dc32c7c6d1d0c80d067aeec805c089287fbe4d6;hb=f02a0f66bfcd16d3c3b08091c1b97b92aeee42fe;hp=2560135a4c39186791a57ab60e60423d58d36f4a;hpb=af6316437363cf85ac844091071bee9b04f58a31;p=guile-irrlicht.git diff --git a/src/video-driver.h b/src/video-driver.h index 2560135..0dc32c7 100644 --- a/src/video-driver.h +++ b/src/video-driver.h @@ -38,6 +38,12 @@ 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); @@ -49,7 +55,16 @@ extern "C" { SCM filename); SCM - irr_getVideoDriver (SCM wrapped_obj); + irr_video_setMaterial (SCM wrapped_video_driver, + SCM material); + + SCM + irr_video_setTransform (SCM wrapped_video_driver, + SCM state, + SCM mat); + + irr::video::E_TRANSFORMATION_STATE + scm_to_transformation_state (SCM transformation_state); }