2013-12-31 23:58:21 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
2013-12-31 23:58:21 +00:00
|
|
|
*
|
|
|
|
* RetroArch 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 Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch 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 RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef D3DVIDEO_DEFINES_H
|
|
|
|
#define D3DVIDEO_DEFINES_H
|
|
|
|
|
|
|
|
#define LPDIRECT3D LPDIRECT3D9
|
|
|
|
#define LPDIRECT3DDEVICE LPDIRECT3DDEVICE9
|
|
|
|
#define LPDIRECT3DTEXTURE LPDIRECT3DTEXTURE9
|
|
|
|
#define LPDIRECT3DVERTEXBUFFER LPDIRECT3DVERTEXBUFFER9
|
|
|
|
#define LPDIRECT3DVERTEXSHADER LPDIRECT3DVERTEXSHADER9
|
|
|
|
#define LPDIRECT3DPIXELSHADER LPDIRECT3DPIXELSHADER9
|
|
|
|
#define LPDIRECT3DSURFACE LPDIRECT3DSURFACE9
|
|
|
|
#define LPDIRECT3DVERTEXDECLARATION LPDIRECT3DVERTEXDECLARATION9
|
|
|
|
#define D3DVERTEXELEMENT D3DVERTEXELEMENT9
|
|
|
|
#define D3DVIEWPORT D3DVIEWPORT9
|
|
|
|
|
|
|
|
#endif
|