libCIrrlicht_la_CPPFLAGS = -I$(top_srcdir)/include
libCIrrlicht_la_LDFLAGS = -version-info 0:1
include_HEADERS = \
+ include/EDriverTypes.h \
include/cirrlicht.h \
- include/EDriverTypes.h
+ include/dimension2d.h
#define __C_IRRLICHT_H_INCLUDED__
#include "EDriverTypes.h"
+#include "dimension2d.h"
#ifdef __cplusplus
extern "C" {
#endif
- int irr_createDevice(irr_video_E_DRIVER_TYPE deviceType);
+ int irr_createDevice(irr_video_E_DRIVER_TYPE deviceType,
+ irr_core_dimension2d_u32 windowSize);
#ifdef __cplusplus
}
--- /dev/null
+/* c-irrlicht --- C bindings for Irrlicht Engine
+
+ Copyright (C) 2019 Javier Sancho <jsf@jsancho.org>
+
+ This file is part of c-irrlicht.
+
+ c-irrlicht is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation; either version 3 of the
+ License, or (at your option) any later version.
+
+ c-irrlicht is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with guile-irrlicht. If not, see
+ <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __C_IRR_DIMENSION2D_H_INCLUDED__
+#define __C_IRR_DIMENSION2D_H_INCLUDED__
+
+typedef struct
+{
+ u_int32_t width;
+ u_int32_t height;
+} irr_core_dimension2d_u32;
+
+#endif
#include "cirrlicht.h"
extern "C" {
- int irr_createDevice(irr_video_E_DRIVER_TYPE deviceType)
+ int irr_createDevice(irr_video_E_DRIVER_TYPE deviceType,
+ irr_core_dimension2d_u32 windowSize)
{
- irr::createDevice((irr::video::E_DRIVER_TYPE)deviceType);
+ irr::core::dimension2d<irr::u32> wsize = \
+ irr::core::dimension2d<irr::u32>(windowSize.width,
+ windowSize.height);
+ irr::createDevice((irr::video::E_DRIVER_TYPE)deviceType,
+ wsize);
return 0;
}
}