TINYGL: Added dirty rectangle files.

This commit is contained in:
Stefano Musumeci 2014-07-22 14:31:30 +02:00
parent 8abbf7296c
commit d74692477b
3 changed files with 38 additions and 0 deletions

View file

@ -52,6 +52,7 @@ MODULE_OBJS := \
tinygl/zmath.o \
tinygl/ztriangle.o \
tinygl/zblit.o \
tinygl/zrect.o \
ifdef USE_SCALERS
MODULE_OBJS += \

View file

@ -0,0 +1,7 @@
#include "graphics/tinygl/zrect.h"
namespace Graphics {
}

30
graphics/tinygl/zrect.h Normal file
View file

@ -0,0 +1,30 @@
/* ResidualVM - A 3D game interpreter
*
* ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the AUTHORS
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef GRAPHICS_TINYGL_ZRECT_H_
#define GRAPHICS_TINYGL_ZRECT_H_
namespace Graphics {
}
#endif