Merge pull request #7130 from 8times9/master
Qt: Add Vulkan to graphics backend description
This commit is contained in:
commit
1453a314df
|
@ -231,12 +231,12 @@ void GeneralWidget::AddDescriptions()
|
||||||
{
|
{
|
||||||
// We need QObject::tr
|
// We need QObject::tr
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
static const char TR_BACKEND_DESCRIPTION[] =
|
static const char TR_BACKEND_DESCRIPTION[] = QT_TR_NOOP(
|
||||||
QT_TR_NOOP("Selects what graphics API to use internally.\nThe software renderer is extremely "
|
"Selects which graphics API to use internally.\n\nThe software renderer is extremely "
|
||||||
"slow and only useful for debugging, so you'll want to use either Direct3D or "
|
"slow and only useful for debugging, so you will want to use either OpenGL, Direct3D, "
|
||||||
"OpenGL. Different games and different GPUs will behave differently on each "
|
"or Vulkan. Different games and different GPUs will behave differently on each "
|
||||||
"backend, so for the best emulation experience it's recommended to try both and "
|
"backend, so for the best emulation experience it is recommended to try each and "
|
||||||
"choose the one that's less problematic.\n\nIf unsure, select OpenGL.");
|
"select the backend that is least problematic.\n\nIf unsure, select OpenGL.");
|
||||||
#else
|
#else
|
||||||
static const char TR_BACKEND_DESCRIPTION[] =
|
static const char TR_BACKEND_DESCRIPTION[] =
|
||||||
QT_TR_NOOP("Selects what graphics API to use internally.\nThe software renderer is extremely "
|
QT_TR_NOOP("Selects what graphics API to use internally.\nThe software renderer is extremely "
|
||||||
|
|
Loading…
Reference in New Issue