mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-28 02:30:35 +00:00
4b0d3620c7
create header for XDK definitions
66 lines
2.3 KiB
C
66 lines
2.3 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2012 - Daniel De Matteis
|
|
*
|
|
* 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 _XDK_DEFINES_H
|
|
#define _XDK_DEFINES_H
|
|
|
|
#if defined(_XBOX1)
|
|
/* XBox 1*/
|
|
#define LPDIRECT3DRESOURCE LPDIRECT3DRESOURCE8
|
|
#define LPDIRECT3DTEXTURE LPDIRECT3DTEXTURE8
|
|
#define LPDIRECT3DCUBETEXTURE LPDIRECT3DCUBETEXTURE8
|
|
#define LPDIRECT3DVOLUMETEXTURE LPDIRECT3DVOLUMETEXTURE8
|
|
#define LPDIRECT3DVERTEXBUFFER LPDIRECT3DVERTEXBUFFER8
|
|
#define LPDIRECT3DRESOURCE LPDIRECT3DRESOURCE8
|
|
#define LPDIRECT3D LPDIRECT3D8
|
|
#define LPDIRECT3DDEVICE LPDIRECT3DDEVICE8
|
|
#define LPDIRECT3DSURFACE LPDIRECT3DSURFACE8
|
|
|
|
#define D3DVIEWPORT D3DVIEWPORT8
|
|
#define D3DVERTEXELEMENT D3DVERTEXELEMENT8
|
|
|
|
#define direct3d_create_ctx Direct3DCreate8
|
|
#define IDirect3DVertexBuffer IDirect3DVertexBuffer8
|
|
|
|
#define SetSamplerState SetTextureStageState
|
|
#define D3DLOCK_NOSYSLOCK (0)
|
|
|
|
#define D3DSAMP_ADDRESSU D3DTSS_ADDRESSU
|
|
#define D3DSAMP_ADDRESSV D3DTSS_ADDRESSV
|
|
#define D3DSAMP_MAGFILTER D3DTSS_MAGFILTER
|
|
#define D3DSAMP_MINFILTER D3DTSS_MINFILTER
|
|
|
|
#elif defined(_XBOX360)
|
|
/* XBox 360*/
|
|
#define LPDIRECT3D LPDIRECT3D9
|
|
#define LPDIRECT3DDEVICE LPDIRECT3DDEVICE9
|
|
#define LPDIRECT3DTEXTURE LPDIRECT3DTEXTURE9
|
|
#define LPDIRECT3DCUBETEXTURE LPDIRECT3DCUBETEXTURE9
|
|
#define LPDIRECT3DSURFACE LPDIRECT3DSURFACE9
|
|
#define LPDIRECT3DVOLUMETEXTURE LPDIRECT3DVOLUMETEXTURE9
|
|
#define LPDIRECT3DVERTEXBUFFER LPDIRECT3DVERTEXBUFFER9
|
|
#define LPDIRECT3DRESOURCE LPDIRECT3DRESOURCE9
|
|
|
|
#define D3DVIEWPORT D3DVIEWPORT9
|
|
#define D3DVERTEXELEMENT D3DVERTEXELEMENT9
|
|
|
|
#define direct3d_create_ctx Direct3DCreate9
|
|
#define IDirect3DVertexDeclaration IDirect3DVertexDeclaration9
|
|
|
|
#endif
|
|
|
|
#endif
|