X-Git-Url: https://git.jsancho.org/?p=c-irrlicht.git;a=blobdiff_plain;f=src%2FCIrrlicht.cpp;h=41076cf4a1b4ffcc13bdd53540cd5a8cf71671db;hp=22464ec2a65ca5b0a076add8045a052fc3604e24;hb=2291f72634c35af1cddc9af11d3a6a88a5eb1c3b;hpb=6d6355e2222d3cdd5aca2f0234105c3d47a6d657 diff --git a/src/CIrrlicht.cpp b/src/CIrrlicht.cpp index 22464ec..41076cf 100644 --- a/src/CIrrlicht.cpp +++ b/src/CIrrlicht.cpp @@ -1,38 +1,36 @@ -/* c-irrlicht -- C bindings for Irrlicht Engine +/* c-irrlicht --- C bindings for Irrlicht Engine - Copyright (C) 2019 Javier Sancho + Copyright (C) 2019 Javier Sancho - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. + This file is part of c-irrlicht. - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: + 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. - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. + 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. - Please note that the Irrlicht Engine is based in part on the work of the - Independent JPEG Group, the zlib and the libPng. This means that if you use - the Irrlicht Engine in your product, you must acknowledge somewhere in your - documentation that you've used the IJG code. It would also be nice to mention - that you use the Irrlicht Engine, the zlib and libPng. See the README files - in the jpeglib, the zlib and libPng for further informations. + You should have received a copy of the GNU Lesser General Public + License along with guile-irrlicht. If not, see + . */ #include #include "cirrlicht.h" extern "C" { - int irr_createDevice() + int irr_createDevice(irr_video_E_DRIVER_TYPE deviceType, + irr_core_dimension2d_u32 windowSize) { - irr::createDevice(); + irr::core::dimension2d wsize = \ + irr::core::dimension2d(windowSize.width, + windowSize.height); + irr::createDevice((irr::video::E_DRIVER_TYPE)deviceType, + wsize); return 0; } }