2017-04-26 10:23:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* Project64-video - A Nintendo 64 gfx plugin. *
|
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2017 Project64. All rights reserved. *
|
|
|
|
* Copyright (C) 2003-2009 Sergey 'Gonetz' Lipski *
|
|
|
|
* Copyright (C) 2002 Dave2001 *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
2013-04-04 21:22:19 +00:00
|
|
|
#ifndef DEPTH_BUFFER_RENDER_H
|
|
|
|
#define DEPTH_BUFFER_RENDER_H
|
|
|
|
|
|
|
|
struct vertexi
|
|
|
|
{
|
2017-04-26 10:23:36 +00:00
|
|
|
int x, y; // Screen position in 16:16 bit fixed point
|
2013-04-04 21:22:19 +00:00
|
|
|
int z; // z value in 16:16 bit fixed point
|
|
|
|
};
|
|
|
|
|
2016-01-20 06:26:07 +00:00
|
|
|
extern uint16_t * zLUT;
|
2013-04-04 21:22:19 +00:00
|
|
|
void ZLUT_init();
|
|
|
|
void ZLUT_release();
|
|
|
|
|
|
|
|
void Rasterize(vertexi * vtx, int vertices, int dzdx);
|
|
|
|
|
|
|
|
#endif //DEPTH_BUFFER_RENDER_H
|