2010-04-25 00:31:27 +00:00
|
|
|
/*
|
2009-02-09 21:15:56 +00:00
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
* http://www.gabest.org
|
|
|
|
*
|
|
|
|
* 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, or (at your option)
|
|
|
|
* any later version.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* 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.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
2012-09-09 18:16:11 +00:00
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA USA.
|
2009-02-09 21:15:56 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "GS.h"
|
|
|
|
|
2014-09-22 07:15:25 +00:00
|
|
|
struct OCLDeviceDesc
|
2014-09-22 00:50:51 +00:00
|
|
|
{
|
2014-12-01 22:06:24 +00:00
|
|
|
#ifdef ENABLE_OPENCL
|
2014-09-22 00:50:51 +00:00
|
|
|
cl::Device device;
|
2014-12-01 22:06:24 +00:00
|
|
|
#endif
|
2014-09-22 00:50:51 +00:00
|
|
|
string name;
|
2014-09-22 07:15:25 +00:00
|
|
|
int version;
|
|
|
|
string tmppath;
|
2014-09-22 00:50:51 +00:00
|
|
|
};
|
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
class GSUtil
|
|
|
|
{
|
|
|
|
public:
|
2011-02-19 23:41:52 +00:00
|
|
|
static const char* GetLibName();
|
2011-02-19 03:36:30 +00:00
|
|
|
|
2009-05-14 16:41:52 +00:00
|
|
|
static GS_PRIM_CLASS GetPrimClass(uint32 prim);
|
2012-01-05 02:40:24 +00:00
|
|
|
static int GetVertexCount(uint32 prim);
|
2014-09-21 16:13:55 +00:00
|
|
|
static int GetClassVertexCount(uint32 primclass);
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2012-01-13 18:10:05 +00:00
|
|
|
static const uint32* HasSharedBitsPtr(uint32 dpsm);
|
|
|
|
static bool HasSharedBits(uint32 spsm, const uint32* ptr);
|
2009-05-14 16:41:52 +00:00
|
|
|
static bool HasSharedBits(uint32 spsm, uint32 dpsm);
|
|
|
|
static bool HasSharedBits(uint32 sbp, uint32 spsm, uint32 dbp, uint32 dpsm);
|
|
|
|
static bool HasCompatibleBits(uint32 spsm, uint32 dpsm);
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
static bool CheckSSE();
|
2014-09-22 07:15:25 +00:00
|
|
|
|
2014-12-01 22:06:24 +00:00
|
|
|
#ifdef ENABLE_OPENCL
|
2014-09-22 07:15:25 +00:00
|
|
|
static void GetDeviceDescs(list<OCLDeviceDesc>& dl);
|
|
|
|
static string GetDeviceUniqueName(cl::Device& device);
|
2014-12-01 22:06:24 +00:00
|
|
|
#endif
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
#ifdef _WINDOWS
|
|
|
|
|
|
|
|
static bool CheckDirectX();
|
2012-08-06 01:56:25 +00:00
|
|
|
static bool CheckDXGI();
|
|
|
|
static bool CheckD3D11();
|
|
|
|
static D3D_FEATURE_LEVEL CheckDirect3D11Level(IDXGIAdapter *adapter = NULL, D3D_DRIVER_TYPE type = D3D_DRIVER_TYPE_HARDWARE);
|
2010-05-07 14:19:54 +00:00
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
#endif
|
2009-02-09 21:15:56 +00:00
|
|
|
};
|
|
|
|
|
2015-09-26 11:41:44 +00:00
|
|
|
#ifdef __linux__
|
|
|
|
void GSmkdir(const char* dir);
|
|
|
|
#endif
|