mesa: remove unused dri config option texture_heaps

This seems to have only been used by DRI1 drivers which were
removed with e4344161bd.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Timothy Arceri 2018-08-15 17:20:18 +10:00
parent fb277f504e
commit 8b4157d578
7 changed files with 0 additions and 108 deletions

View file

@ -274,22 +274,6 @@ msgstr "Utilitza el HyperZ per a augmentar el rendiment"
msgid "Number of texture units used"
msgstr "Nombre d'unitats de textura utilitzades"
#: t_options.h:294
msgid "Used types of texture memory"
msgstr "Tipus utilitzats de memòria de textura"
#: t_options.h:295
msgid "All available memory"
msgstr "Tota la memòria disponible"
#: t_options.h:296
msgid "Only card memory (if available)"
msgstr "Només memòria de targeta (si està disponible)"
#: t_options.h:297
msgid "Only GART (AGP/PCIE) memory (if available)"
msgstr "Només memòria GART (AGP/PCIE) (si està disponible)"
#: t_options.h:323
msgid "Miscellaneous"
msgstr "Miscel·lània"

View file

@ -249,22 +249,6 @@ msgstr "HyperZ zur Leistungssteigerung verwenden"
msgid "Number of texture units used"
msgstr "Anzahl der benutzten Textureinheiten"
#: t_options.h:294
msgid "Used types of texture memory"
msgstr "Benutzte Arten von Texturspeicher"
#: t_options.h:295
msgid "All available memory"
msgstr "Aller verfügbarer Speicher"
#: t_options.h:296
msgid "Only card memory (if available)"
msgstr "Nur Grafikspeicher (falls verfügbar)"
#: t_options.h:297
msgid "Only GART (AGP/PCIE) memory (if available)"
msgstr "Nur GART-Speicher (AGP/PCIE) (falls verfügbar)"
#: t_options.h:323
msgid "Miscellaneous"
msgstr ""

View file

@ -258,22 +258,6 @@ msgstr "Usar HyperZ para potenciar rendimiento"
msgid "Number of texture units used"
msgstr "Número de unidades de textura usadas"
#: t_options.h:294
msgid "Used types of texture memory"
msgstr "Tipos de memoria de textura usados"
#: t_options.h:295
msgid "All available memory"
msgstr "Toda la memoria disponible"
#: t_options.h:296
msgid "Only card memory (if available)"
msgstr "Solo memoria de tarjeta (si está disponible)"
#: t_options.h:297
msgid "Only GART (AGP/PCIE) memory (if available)"
msgstr "Solo memoria GART (AGP/PCIE) (si está disponible)"
#: t_options.h:323
msgid "Miscellaneous"
msgstr "Misceláneos"

View file

@ -247,22 +247,6 @@ msgstr "Utiliser le HyperZ pour améliorer les performances"
msgid "Number of texture units used"
msgstr "Nombre d'unités de texture"
#: t_options.h:294
msgid "Used types of texture memory"
msgstr "Types de mémoire de texture"
#: t_options.h:295
msgid "All available memory"
msgstr "Utiliser toute la mémoire disponible"
#: t_options.h:296
msgid "Only card memory (if available)"
msgstr "Utiliser uniquement la mémoire graphique (si disponible)"
#: t_options.h:297
msgid "Only GART (AGP/PCIE) memory (if available)"
msgstr "Utiliser uniquement la mémoire GART (AGP/PCIE) (si disponible)"
#: t_options.h:323
msgid "Miscellaneous"
msgstr ""

View file

@ -246,22 +246,6 @@ msgstr "Gebruik HyperZ om de prestaties te verbeteren"
msgid "Number of texture units used"
msgstr "Aantal textuureenheden in gebruik"
#: t_options.h:294
msgid "Used types of texture memory"
msgstr "Gebruikte soorten textuurgeheugen"
#: t_options.h:295
msgid "All available memory"
msgstr "Al het beschikbaar geheugen"
#: t_options.h:296
msgid "Only card memory (if available)"
msgstr "Alleen geheugen op de kaart (als het aanwezig is)"
#: t_options.h:297
msgid "Only GART (AGP/PCIE) memory (if available)"
msgstr "Alleen GART (AGP/PCIE) geheugen (als het aanwezig is)"
#: t_options.h:323
msgid "Miscellaneous"
msgstr ""

View file

@ -240,22 +240,6 @@ msgstr "Använd HyperZ för att maximera prestandan"
msgid "Number of texture units used"
msgstr "Antal använda texturenheter"
#: t_options.h:294
msgid "Used types of texture memory"
msgstr "Använda typer av texturminne"
#: t_options.h:295
msgid "All available memory"
msgstr "Allt tillgängligt minne"
#: t_options.h:296
msgid "Only card memory (if available)"
msgstr "Endast kortminne (om tillgängligt)"
#: t_options.h:297
msgid "Only GART (AGP/PCIE) memory (if available)"
msgstr "Endast GART-minne (AGP/PCIE) (om tillgängligt)"
#: t_options.h:323
msgid "Miscellaneous"
msgstr ""

View file

@ -309,18 +309,6 @@ DRI_CONF_OPT_BEGIN_V(texture_units,int,def, # min ":" # max ) \
DRI_CONF_DESC(en,gettext("Number of texture units used")) \
DRI_CONF_OPT_END
#define DRI_CONF_TEXTURE_HEAPS_ALL 0
#define DRI_CONF_TEXTURE_HEAPS_CARD 1
#define DRI_CONF_TEXTURE_HEAPS_GART 2
#define DRI_CONF_TEXTURE_HEAPS(def) \
DRI_CONF_OPT_BEGIN_V(texture_heaps,enum,def,"0:2") \
DRI_CONF_DESC_BEGIN(en,gettext("Used types of texture memory")) \
DRI_CONF_ENUM(0,gettext("All available memory")) \
DRI_CONF_ENUM(1,gettext("Only card memory (if available)")) \
DRI_CONF_ENUM(2,gettext("Only GART (AGP/PCIE) memory (if available)")) \
DRI_CONF_DESC_END \
DRI_CONF_OPT_END
#define DRI_CONF_MESA_GLTHREAD(def) \
DRI_CONF_OPT_BEGIN_B(mesa_glthread, def) \
DRI_CONF_DESC(en,gettext("Enable offloading GL driver work to a separate thread")) \