2010-04-25 00:31:27 +00:00
|
|
|
/*
|
2015-05-26 13:36:47 +00:00
|
|
|
* Copyright (C) 2007-2015 Gabest
|
2009-02-09 21:15:56 +00:00
|
|
|
* 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
|
|
|
|
|
2011-11-16 22:17:37 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
struct GSSetting
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2010-04-25 00:31:27 +00:00
|
|
|
uint32 id;
|
2010-06-23 05:32:50 +00:00
|
|
|
std::string name;
|
|
|
|
std::string note;
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
GSSetting(uint32 id, const char* name, const char* note)
|
|
|
|
{
|
|
|
|
this->id = id;
|
|
|
|
this->name = name;
|
|
|
|
this->note = note;
|
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
};
|
2015-04-16 17:20:17 +00:00
|
|
|
|
|
|
|
const char* dialog_message(int ID, bool* updateText = NULL);
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
enum {
|
2015-07-19 21:27:45 +00:00
|
|
|
IDC_FILTER,
|
2015-04-16 17:20:17 +00:00
|
|
|
IDC_SKIPDRAWHACK,
|
|
|
|
IDC_SKIPDRAWHACKEDIT,
|
|
|
|
IDC_ALPHAHACK,
|
|
|
|
IDC_OFFSETHACK,
|
|
|
|
IDC_SPRITEHACK,
|
|
|
|
IDC_WILDHACK,
|
|
|
|
IDC_MSAACB,
|
|
|
|
IDC_ALPHASTENCIL,
|
|
|
|
IDC_CHECK_DISABLE_ALL_HACKS,
|
|
|
|
IDC_ALIGN_SPRITE,
|
2015-05-02 06:24:41 +00:00
|
|
|
IDC_ROUND_SPRITE,
|
2015-04-16 17:20:17 +00:00
|
|
|
IDC_TCOFFSETX,
|
|
|
|
IDC_TCOFFSETX2,
|
|
|
|
IDC_TCOFFSETY,
|
|
|
|
IDC_TCOFFSETY2,
|
2015-05-11 12:12:41 +00:00
|
|
|
IDC_PALTEX,
|
2015-07-19 07:34:06 +00:00
|
|
|
IDC_ACCURATE_BLEND_UNIT,
|
2015-05-20 07:42:22 +00:00
|
|
|
IDC_ACCURATE_DATE,
|
2015-06-26 20:07:51 +00:00
|
|
|
IDC_TC_DEPTH,
|
gsdx: Add new tooltips and descriptions.
For Linux and Windows, add tooltip descriptions for AF, AA1, extra
rendering threads, Enable Shade Boost, FX Shader/External Shader, FXAA.
For Windows, also add Alpha Correction and Logarithmic Z tooltips.
For Linux, add software mipmap tooltip.
Thanks to tsunami2311, ssakash, gregory38 and whoever did the wiki for
helping with descriptions.
2015-08-26 22:22:36 +00:00
|
|
|
IDC_CRC_LEVEL,
|
|
|
|
IDC_AFCOMBO,
|
|
|
|
IDC_AA1,
|
|
|
|
IDC_SWTHREADS,
|
|
|
|
IDC_SWTHREADS_EDIT,
|
|
|
|
IDC_SHADEBOOST,
|
|
|
|
IDC_SHADER_FX,
|
|
|
|
IDC_FXAA,
|
|
|
|
IDC_MIPMAP
|
2015-04-16 17:20:17 +00:00
|
|
|
};
|
|
|
|
#endif
|