dxx-rebirth/common/2d/gpixel.cpp

53 lines
1.6 KiB
C++
Raw Normal View History

2006-03-20 16:43:15 +00:00
/*
2014-06-01 17:55:23 +00:00
* Portions of this file are copyright Rebirth contributors and licensed as
* described in COPYING.txt.
* Portions of this file are copyright Parallax Software and licensed
* according to the Parallax license below.
* See COPYING.txt for license details.
2006-03-20 16:43:15 +00:00
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
2006-03-20 16:43:15 +00:00
COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
#include "u_mem.h"
2006-03-20 16:43:15 +00:00
#include "gr.h"
#if DXX_USE_OGL
#include "ogl_init.h"
#endif
2006-03-20 16:43:15 +00:00
2015-12-13 18:00:49 +00:00
namespace dcx {
2015-12-05 22:57:23 +00:00
color_palette_index gr_ugpixel(const grs_bitmap &bitmap, int x, int y)
2006-03-20 16:43:15 +00:00
{
2015-07-25 23:10:47 +00:00
switch (bitmap.get_type())
{
2016-05-28 17:31:26 +00:00
case bm_mode::linear:
2014-11-30 22:09:18 +00:00
return bitmap.bm_data[ bitmap.bm_rowsize*y + x ];
case bm_mode::ilbm:
case bm_mode::rgb15:
break;
#if DXX_USE_OGL
2016-05-28 17:31:26 +00:00
case bm_mode::ogl:
2014-11-30 22:09:18 +00:00
return ogl_ugpixel(bitmap, x, y);
#endif
}
return color_palette_index{0};
2006-03-20 16:43:15 +00:00
}
color_palette_index gr_gpixel(const grs_bitmap &bitmap, const unsigned x, const unsigned y)
2006-03-20 16:43:15 +00:00
{
2016-12-29 03:27:11 +00:00
if (x >= bitmap.bm_w || y >= bitmap.bm_h)
return color_palette_index{0};
return gr_ugpixel(bitmap, x, y);
2006-03-20 16:43:15 +00:00
}
2015-12-05 22:57:23 +00:00
}