mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
driconfig: add a new engine name/version parameter
Vulkan applications can register with the following structure :
typedef struct VkApplicationInfo {
VkStructureType sType;
const void* pNext;
const char* pApplicationName;
uint32_t applicationVersion;
const char* pEngineName;
uint32_t engineVersion;
uint32_t apiVersion;
} VkApplicationInfo;
This enables the Vulkan implementations to apply workarounds based off
matching this description.
Here we add a new parameter for matching the driconfig options with
the following :
<device driver="anv">
<application engine_name_match="MyOwnEngine.*" engine_versions="10:12,40:42">
<option name="blaaah" value="true" />
</application>
</device>
v2: switch engine name match to use regexps
v3: Verify that the regexec returns REG_NOMATCH for match failure (Eric)
v4: Add missing bit that went to the following commit (Eric)
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Cc: 19.2 <mesa-stable@lists.freedesktop.org>
This commit is contained in:
parent
6d5f11ab34
commit
04dc6074cf
14 changed files with 104 additions and 21 deletions
|
|
@ -567,7 +567,9 @@ static void radv_init_dri_options(struct radv_instance *instance)
|
||||||
driParseOptionInfo(&instance->available_dri_options, radv_dri_options_xml);
|
driParseOptionInfo(&instance->available_dri_options, radv_dri_options_xml);
|
||||||
driParseConfigFiles(&instance->dri_options,
|
driParseConfigFiles(&instance->dri_options,
|
||||||
&instance->available_dri_options,
|
&instance->available_dri_options,
|
||||||
0, "radv", NULL);
|
0, "radv", NULL,
|
||||||
|
instance->engineName,
|
||||||
|
instance->engineVersion);
|
||||||
}
|
}
|
||||||
|
|
||||||
VkResult radv_CreateInstance(
|
VkResult radv_CreateInstance(
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,7 @@ pipe_loader_load_options(struct pipe_loader_device *dev)
|
||||||
|
|
||||||
driParseOptionInfo(&dev->option_info, xml_options);
|
driParseOptionInfo(&dev->option_info, xml_options);
|
||||||
driParseConfigFiles(&dev->option_cache, &dev->option_info, 0,
|
driParseConfigFiles(&dev->option_cache, &dev->option_info, 0,
|
||||||
dev->driver_name, NULL);
|
dev->driver_name, NULL, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
|
|
|
||||||
|
|
@ -250,7 +250,8 @@ drm_create_adapter( int fd,
|
||||||
ctx->base.throttling = ctx->base.throttling_value > 0;
|
ctx->base.throttling = ctx->base.throttling_value > 0;
|
||||||
|
|
||||||
driParseOptionInfo(&defaultInitOptions, __driConfigOptionsNine);
|
driParseOptionInfo(&defaultInitOptions, __driConfigOptionsNine);
|
||||||
driParseConfigFiles(&userInitOptions, &defaultInitOptions, 0, "nine", NULL);
|
driParseConfigFiles(&userInitOptions, &defaultInitOptions, 0,
|
||||||
|
"nine", NULL, NULL, 0);
|
||||||
if (driCheckOption(&userInitOptions, "throttle_value", DRI_INT)) {
|
if (driCheckOption(&userInitOptions, "throttle_value", DRI_INT)) {
|
||||||
throttling_value_user = driQueryOptioni(&userInitOptions, "throttle_value");
|
throttling_value_user = driQueryOptioni(&userInitOptions, "throttle_value");
|
||||||
if (throttling_value_user == -1)
|
if (throttling_value_user == -1)
|
||||||
|
|
|
||||||
|
|
@ -780,7 +780,9 @@ VkResult anv_CreateInstance(
|
||||||
|
|
||||||
driParseOptionInfo(&instance->available_dri_options, anv_dri_options_xml);
|
driParseOptionInfo(&instance->available_dri_options, anv_dri_options_xml);
|
||||||
driParseConfigFiles(&instance->dri_options, &instance->available_dri_options,
|
driParseConfigFiles(&instance->dri_options, &instance->available_dri_options,
|
||||||
0, "anv", NULL);
|
0, "anv", NULL,
|
||||||
|
instance->app_info.engine_name,
|
||||||
|
instance->app_info.engine_version);
|
||||||
|
|
||||||
*pInstance = anv_instance_to_handle(instance);
|
*pInstance = anv_instance_to_handle(instance);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -185,7 +185,7 @@ static char *loader_get_dri_config_driver(int fd)
|
||||||
|
|
||||||
driParseOptionInfo(&defaultInitOptions, __driConfigOptionsLoader);
|
driParseOptionInfo(&defaultInitOptions, __driConfigOptionsLoader);
|
||||||
driParseConfigFiles(&userInitOptions, &defaultInitOptions, 0,
|
driParseConfigFiles(&userInitOptions, &defaultInitOptions, 0,
|
||||||
"loader", kernel_driver);
|
"loader", kernel_driver, NULL, 0);
|
||||||
if (driCheckOption(&userInitOptions, "dri_driver", DRI_STRING)) {
|
if (driCheckOption(&userInitOptions, "dri_driver", DRI_STRING)) {
|
||||||
char *opt = driQueryOptionstr(&userInitOptions, "dri_driver");
|
char *opt = driQueryOptionstr(&userInitOptions, "dri_driver");
|
||||||
/* not an empty string */
|
/* not an empty string */
|
||||||
|
|
@ -206,7 +206,8 @@ static char *loader_get_dri_config_device_id(void)
|
||||||
char *prime = NULL;
|
char *prime = NULL;
|
||||||
|
|
||||||
driParseOptionInfo(&defaultInitOptions, __driConfigOptionsLoader);
|
driParseOptionInfo(&defaultInitOptions, __driConfigOptionsLoader);
|
||||||
driParseConfigFiles(&userInitOptions, &defaultInitOptions, 0, "loader", NULL);
|
driParseConfigFiles(&userInitOptions, &defaultInitOptions, 0,
|
||||||
|
"loader", NULL, NULL, 0);
|
||||||
if (driCheckOption(&userInitOptions, "device_id", DRI_STRING))
|
if (driCheckOption(&userInitOptions, "device_id", DRI_STRING))
|
||||||
prime = strdup(driQueryOptionstr(&userInitOptions, "device_id"));
|
prime = strdup(driQueryOptionstr(&userInitOptions, "device_id"));
|
||||||
driDestroyOptionCache(&userInitOptions);
|
driDestroyOptionCache(&userInitOptions);
|
||||||
|
|
|
||||||
|
|
@ -148,7 +148,8 @@ driCreateNewScreen2(int scrn, int fd,
|
||||||
|
|
||||||
/* Option parsing before ->InitScreen(), as some options apply there. */
|
/* Option parsing before ->InitScreen(), as some options apply there. */
|
||||||
driParseOptionInfo(&psp->optionInfo, __dri2ConfigOptions);
|
driParseOptionInfo(&psp->optionInfo, __dri2ConfigOptions);
|
||||||
driParseConfigFiles(&psp->optionCache, &psp->optionInfo, psp->myNum, "dri2", NULL);
|
driParseConfigFiles(&psp->optionCache, &psp->optionInfo, psp->myNum,
|
||||||
|
"dri2", NULL, NULL, 0);
|
||||||
|
|
||||||
*driver_configs = psp->driver->InitScreen(psp);
|
*driver_configs = psp->driver->InitScreen(psp);
|
||||||
if (*driver_configs == NULL) {
|
if (*driver_configs == NULL) {
|
||||||
|
|
|
||||||
|
|
@ -446,7 +446,7 @@ intelInitContext(struct intel_context *intel,
|
||||||
0, sizeof(ctx->TextureFormatSupported));
|
0, sizeof(ctx->TextureFormatSupported));
|
||||||
|
|
||||||
driParseConfigFiles(&intel->optionCache, &intelScreen->optionCache,
|
driParseConfigFiles(&intel->optionCache, &intelScreen->optionCache,
|
||||||
sPriv->myNum, "i915", NULL);
|
sPriv->myNum, "i915", NULL, NULL, 0);
|
||||||
intel->maxBatchSize = 4096;
|
intel->maxBatchSize = 4096;
|
||||||
|
|
||||||
/* Estimate the size of the mappable aperture into the GTT. There's an
|
/* Estimate the size of the mappable aperture into the GTT. There's an
|
||||||
|
|
|
||||||
|
|
@ -844,7 +844,7 @@ brw_process_driconf_options(struct brw_context *brw)
|
||||||
driOptionCache *options = &brw->optionCache;
|
driOptionCache *options = &brw->optionCache;
|
||||||
driParseConfigFiles(options, &brw->screen->optionCache,
|
driParseConfigFiles(options, &brw->screen->optionCache,
|
||||||
brw->driContext->driScreenPriv->myNum,
|
brw->driContext->driScreenPriv->myNum,
|
||||||
"i965", NULL);
|
"i965", NULL, NULL, 0);
|
||||||
|
|
||||||
if (INTEL_DEBUG & DEBUG_NO_HIZ) {
|
if (INTEL_DEBUG & DEBUG_NO_HIZ) {
|
||||||
brw->has_hiz = false;
|
brw->has_hiz = false;
|
||||||
|
|
|
||||||
|
|
@ -2524,7 +2524,7 @@ __DRIconfig **intelInitScreen2(__DRIscreen *dri_screen)
|
||||||
|
|
||||||
driParseOptionInfo(&options, brw_config_options.xml);
|
driParseOptionInfo(&options, brw_config_options.xml);
|
||||||
driParseConfigFiles(&screen->optionCache, &options, dri_screen->myNum,
|
driParseConfigFiles(&screen->optionCache, &options, dri_screen->myNum,
|
||||||
"i965", NULL);
|
"i965", NULL, NULL, 0);
|
||||||
driDestroyOptionCache(&options);
|
driDestroyOptionCache(&options);
|
||||||
|
|
||||||
screen->driScrnPriv = dri_screen;
|
screen->driScrnPriv = dri_screen;
|
||||||
|
|
|
||||||
|
|
@ -216,13 +216,13 @@ GLboolean r200CreateContext( gl_api api,
|
||||||
* the default textures.
|
* the default textures.
|
||||||
*/
|
*/
|
||||||
driParseConfigFiles (&rmesa->radeon.optionCache, &screen->optionCache,
|
driParseConfigFiles (&rmesa->radeon.optionCache, &screen->optionCache,
|
||||||
screen->driScreen->myNum, "r200", NULL);
|
screen->driScreen->myNum, "r200", NULL, NULL, 0);
|
||||||
rmesa->radeon.initialMaxAnisotropy = driQueryOptionf(&rmesa->radeon.optionCache,
|
rmesa->radeon.initialMaxAnisotropy = driQueryOptionf(&rmesa->radeon.optionCache,
|
||||||
"def_max_anisotropy");
|
"def_max_anisotropy");
|
||||||
|
|
||||||
if (driQueryOptionb( &rmesa->radeon.optionCache, "hyperz"))
|
if (driQueryOptionb( &rmesa->radeon.optionCache, "hyperz"))
|
||||||
rmesa->using_hyperz = GL_TRUE;
|
rmesa->using_hyperz = GL_TRUE;
|
||||||
|
|
||||||
/* Init default driver functions then plug in our R200-specific functions
|
/* Init default driver functions then plug in our R200-specific functions
|
||||||
* (the texture functions are especially important)
|
* (the texture functions are especially important)
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -177,13 +177,13 @@ r100CreateContext( gl_api api,
|
||||||
|
|
||||||
/* init exp fog table data */
|
/* init exp fog table data */
|
||||||
radeonInitStaticFogData();
|
radeonInitStaticFogData();
|
||||||
|
|
||||||
/* Parse configuration files.
|
/* Parse configuration files.
|
||||||
* Do this here so that initialMaxAnisotropy is set before we create
|
* Do this here so that initialMaxAnisotropy is set before we create
|
||||||
* the default textures.
|
* the default textures.
|
||||||
*/
|
*/
|
||||||
driParseConfigFiles (&rmesa->radeon.optionCache, &screen->optionCache,
|
driParseConfigFiles (&rmesa->radeon.optionCache, &screen->optionCache,
|
||||||
screen->driScreen->myNum, "radeon", NULL);
|
screen->driScreen->myNum, "radeon", NULL, NULL, 0);
|
||||||
rmesa->radeon.initialMaxAnisotropy = driQueryOptionf(&rmesa->radeon.optionCache,
|
rmesa->radeon.initialMaxAnisotropy = driQueryOptionf(&rmesa->radeon.optionCache,
|
||||||
"def_max_anisotropy");
|
"def_max_anisotropy");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,11 +30,20 @@ TODO: document the other workarounds.
|
||||||
|
|
||||||
<!DOCTYPE driconf [
|
<!DOCTYPE driconf [
|
||||||
<!ELEMENT driconf (device+)>
|
<!ELEMENT driconf (device+)>
|
||||||
<!ELEMENT device (application+)>
|
<!ELEMENT device (application | engine)+>
|
||||||
<!ATTLIST device driver CDATA #IMPLIED>
|
<!ATTLIST device driver CDATA #IMPLIED>
|
||||||
<!ELEMENT application (option+)>
|
<!ELEMENT application (option+)>
|
||||||
<!ATTLIST application name CDATA #REQUIRED
|
<!ATTLIST application name CDATA #REQUIRED
|
||||||
executable CDATA #REQUIRED>
|
executable CDATA #REQUIRED>
|
||||||
|
<!ELEMENT engine (option+)>
|
||||||
|
|
||||||
|
<!-- engine_name_match: A regexp matching the engine name -->
|
||||||
|
<!-- engine_version: A list of version in range format
|
||||||
|
(version 1 to 4 and version 7 to 8 : "1:4,7:8") -->
|
||||||
|
|
||||||
|
<!ATTLIST engine engine_name_match CDATA #REQUIRED
|
||||||
|
engine_versions CDATA #REQUIRED>
|
||||||
|
|
||||||
<!ELEMENT option EMPTY>
|
<!ELEMENT option EMPTY>
|
||||||
<!ATTLIST option name CDATA #REQUIRED
|
<!ATTLIST option name CDATA #REQUIRED
|
||||||
value CDATA #REQUIRED>
|
value CDATA #REQUIRED>
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <fnmatch.h>
|
#include <fnmatch.h>
|
||||||
|
#include <regex.h>
|
||||||
#include "xmlconfig.h"
|
#include "xmlconfig.h"
|
||||||
#include "u_process.h"
|
#include "u_process.h"
|
||||||
|
|
||||||
|
|
@ -699,6 +700,8 @@ struct OptConfData {
|
||||||
int screenNum;
|
int screenNum;
|
||||||
const char *driverName, *execName;
|
const char *driverName, *execName;
|
||||||
const char *kernelDriverName;
|
const char *kernelDriverName;
|
||||||
|
const char *engineName;
|
||||||
|
uint32_t engineVersion;
|
||||||
uint32_t ignoringDevice;
|
uint32_t ignoringDevice;
|
||||||
uint32_t ignoringApp;
|
uint32_t ignoringApp;
|
||||||
uint32_t inDriConf;
|
uint32_t inDriConf;
|
||||||
|
|
@ -709,12 +712,13 @@ struct OptConfData {
|
||||||
|
|
||||||
/** \brief Elements in configuration files. */
|
/** \brief Elements in configuration files. */
|
||||||
enum OptConfElem {
|
enum OptConfElem {
|
||||||
OC_APPLICATION = 0, OC_DEVICE, OC_DRICONF, OC_OPTION, OC_COUNT
|
OC_APPLICATION = 0, OC_DEVICE, OC_DRICONF, OC_ENGINE, OC_OPTION, OC_COUNT
|
||||||
};
|
};
|
||||||
static const XML_Char *OptConfElems[] = {
|
static const XML_Char *OptConfElems[] = {
|
||||||
[OC_APPLICATION] = "application",
|
[OC_APPLICATION] = "application",
|
||||||
[OC_DEVICE] = "device",
|
[OC_DEVICE] = "device",
|
||||||
[OC_DRICONF] = "driconf",
|
[OC_DRICONF] = "driconf",
|
||||||
|
[OC_ENGINE] = "engine",
|
||||||
[OC_OPTION] = "option",
|
[OC_OPTION] = "option",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -743,6 +747,20 @@ parseDeviceAttr(struct OptConfData *data, const XML_Char **attr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
valueInRanges(const driOptionInfo *info, uint32_t value)
|
||||||
|
{
|
||||||
|
uint32_t i;
|
||||||
|
|
||||||
|
for (i = 0; i < info->nRanges; i++) {
|
||||||
|
if (info->ranges[i].start._int <= value &&
|
||||||
|
info->ranges[i].end._int >= value)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/** \brief Parse attributes of an application element. */
|
/** \brief Parse attributes of an application element. */
|
||||||
static void
|
static void
|
||||||
parseAppAttr(struct OptConfData *data, const XML_Char **attr)
|
parseAppAttr(struct OptConfData *data, const XML_Char **attr)
|
||||||
|
|
@ -758,6 +776,40 @@ parseAppAttr(struct OptConfData *data, const XML_Char **attr)
|
||||||
data->ignoringApp = data->inApp;
|
data->ignoringApp = data->inApp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** \brief Parse attributes of an application element. */
|
||||||
|
static void
|
||||||
|
parseEngineAttr(struct OptConfData *data, const XML_Char **attr)
|
||||||
|
{
|
||||||
|
uint32_t i;
|
||||||
|
const XML_Char *engine_name_match = NULL, *engine_versions = NULL;
|
||||||
|
driOptionInfo version_ranges = {
|
||||||
|
.type = DRI_INT,
|
||||||
|
};
|
||||||
|
for (i = 0; attr[i]; i += 2) {
|
||||||
|
if (!strcmp (attr[i], "name")) /* not needed here */;
|
||||||
|
else if (!strcmp (attr[i], "engine_name_match")) engine_name_match = attr[i+1];
|
||||||
|
else if (!strcmp (attr[i], "engine_versions")) engine_versions = attr[i+1];
|
||||||
|
else XML_WARNING("unknown application attribute: %s.", attr[i]);
|
||||||
|
}
|
||||||
|
if (engine_name_match) {
|
||||||
|
regex_t re;
|
||||||
|
|
||||||
|
if (regcomp (&re, engine_name_match, REG_EXTENDED|REG_NOSUB) != 0) {
|
||||||
|
if (regexec (&re, data->engineName, 0, NULL, 0) == REG_NOMATCH)
|
||||||
|
data->ignoringApp = data->inApp;
|
||||||
|
regfree (&re);
|
||||||
|
} else
|
||||||
|
XML_WARNING ("Invalid engine_name_match=\"%s\".", engine_name_match);
|
||||||
|
}
|
||||||
|
if (engine_versions) {
|
||||||
|
if (parseRanges (&version_ranges, engine_versions) &&
|
||||||
|
!valueInRanges (&version_ranges, data->engineVersion))
|
||||||
|
data->ignoringApp = data->inApp;
|
||||||
|
}
|
||||||
|
|
||||||
|
free(version_ranges.ranges);
|
||||||
|
}
|
||||||
|
|
||||||
/** \brief Parse attributes of an option element. */
|
/** \brief Parse attributes of an option element. */
|
||||||
static void
|
static void
|
||||||
parseOptConfAttr(struct OptConfData *data, const XML_Char **attr)
|
parseOptConfAttr(struct OptConfData *data, const XML_Char **attr)
|
||||||
|
|
@ -815,11 +867,20 @@ optConfStartElem(void *userData, const XML_Char *name,
|
||||||
if (!data->inDevice)
|
if (!data->inDevice)
|
||||||
XML_WARNING1 ("<application> should be inside <device>.");
|
XML_WARNING1 ("<application> should be inside <device>.");
|
||||||
if (data->inApp)
|
if (data->inApp)
|
||||||
XML_WARNING1 ("nested <application> elements.");
|
XML_WARNING1 ("nested <application> or <engine> elements.");
|
||||||
data->inApp++;
|
data->inApp++;
|
||||||
if (!data->ignoringDevice && !data->ignoringApp)
|
if (!data->ignoringDevice && !data->ignoringApp)
|
||||||
parseAppAttr (data, attr);
|
parseAppAttr (data, attr);
|
||||||
break;
|
break;
|
||||||
|
case OC_ENGINE:
|
||||||
|
if (!data->inDevice)
|
||||||
|
XML_WARNING1 ("<engine> should be inside <device>.");
|
||||||
|
if (data->inApp)
|
||||||
|
XML_WARNING1 ("nested <application> or <engine> elements.");
|
||||||
|
data->inApp++;
|
||||||
|
if (!data->ignoringDevice && !data->ignoringApp)
|
||||||
|
parseEngineAttr (data, attr);
|
||||||
|
break;
|
||||||
case OC_OPTION:
|
case OC_OPTION:
|
||||||
if (!data->inApp)
|
if (!data->inApp)
|
||||||
XML_WARNING1 ("<option> should be inside <application>.");
|
XML_WARNING1 ("<option> should be inside <application>.");
|
||||||
|
|
@ -849,6 +910,7 @@ optConfEndElem(void *userData, const XML_Char *name)
|
||||||
data->ignoringDevice = 0;
|
data->ignoringDevice = 0;
|
||||||
break;
|
break;
|
||||||
case OC_APPLICATION:
|
case OC_APPLICATION:
|
||||||
|
case OC_ENGINE:
|
||||||
if (data->inApp-- == data->ignoringApp)
|
if (data->inApp-- == data->ignoringApp)
|
||||||
data->ignoringApp = 0;
|
data->ignoringApp = 0;
|
||||||
break;
|
break;
|
||||||
|
|
@ -996,7 +1058,8 @@ parseConfigDir(struct OptConfData *data, const char *dirname)
|
||||||
void
|
void
|
||||||
driParseConfigFiles(driOptionCache *cache, const driOptionCache *info,
|
driParseConfigFiles(driOptionCache *cache, const driOptionCache *info,
|
||||||
int screenNum, const char *driverName,
|
int screenNum, const char *driverName,
|
||||||
const char *kernelDriverName)
|
const char *kernelDriverName,
|
||||||
|
const char *engineName, uint32_t engineVersion)
|
||||||
{
|
{
|
||||||
char *home;
|
char *home;
|
||||||
struct OptConfData userData;
|
struct OptConfData userData;
|
||||||
|
|
@ -1007,6 +1070,8 @@ driParseConfigFiles(driOptionCache *cache, const driOptionCache *info,
|
||||||
userData.screenNum = screenNum;
|
userData.screenNum = screenNum;
|
||||||
userData.driverName = driverName;
|
userData.driverName = driverName;
|
||||||
userData.kernelDriverName = kernelDriverName;
|
userData.kernelDriverName = kernelDriverName;
|
||||||
|
userData.engineName = engineName ? engineName : "";
|
||||||
|
userData.engineVersion = engineVersion;
|
||||||
userData.execName = util_get_process_name();
|
userData.execName = util_get_process_name();
|
||||||
|
|
||||||
parseConfigDir(&userData, DATADIR "/drirc.d");
|
parseConfigDir(&userData, DATADIR "/drirc.d");
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
#include "util/mesa-sha1.h"
|
#include "util/mesa-sha1.h"
|
||||||
#include "util/ralloc.h"
|
#include "util/ralloc.h"
|
||||||
|
#include <stdint.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define STRING_CONF_MAXLEN 25
|
#define STRING_CONF_MAXLEN 25
|
||||||
|
|
@ -102,11 +103,12 @@ void driParseOptionInfo (driOptionCache *info,
|
||||||
const char *configOptions);
|
const char *configOptions);
|
||||||
/** \brief Initialize option cache from info and parse configuration files
|
/** \brief Initialize option cache from info and parse configuration files
|
||||||
*
|
*
|
||||||
* To be called in <driver>CreateContext. screenNum, driverName and
|
* To be called in <driver>CreateContext. screenNum, driverName,
|
||||||
* kernelDriverName select device sections. */
|
* kernelDriverName and engineName select device sections. */
|
||||||
void driParseConfigFiles (driOptionCache *cache, const driOptionCache *info,
|
void driParseConfigFiles (driOptionCache *cache, const driOptionCache *info,
|
||||||
int screenNum, const char *driverName,
|
int screenNum, const char *driverName,
|
||||||
const char *kernelDriverName);
|
const char *kernelDriverName,
|
||||||
|
const char *engineName, uint32_t engineVersion);
|
||||||
/** \brief Destroy option info
|
/** \brief Destroy option info
|
||||||
*
|
*
|
||||||
* To be called in <driver>DestroyScreen */
|
* To be called in <driver>DestroyScreen */
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue