OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:colorCfgs
(Results
1 - 2
of
2
) sorted by null
/external/deqp/framework/opengl/
gluRenderConfig.cpp
50
}
colorCfgs
[] =
58
for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(
colorCfgs
); ndx++)
60
if (deStringBeginsWith(cfgName,
colorCfgs
[ndx].name))
62
config->redBits =
colorCfgs
[ndx].redBits;
63
config->greenBits =
colorCfgs
[ndx].greenBits;
64
config->blueBits =
colorCfgs
[ndx].blueBits;
65
config->alphaBits =
colorCfgs
[ndx].alphaBits;
67
cfgName += strlen(
colorCfgs
[ndx].name);
/external/deqp/external/openglcts/modules/runner/
glcTestRunner.cpp
123
}
colorCfgs
[] = {
126
for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(
colorCfgs
); ndx++)
128
if (!strncmp(configName,
colorCfgs
[ndx].name, strlen(
colorCfgs
[ndx].name)))
130
cfgInfo.redBits =
colorCfgs
[ndx].redBits;
131
cfgInfo.greenBits =
colorCfgs
[ndx].greenBits;
132
cfgInfo.blueBits =
colorCfgs
[ndx].blueBits;
133
cfgInfo.alphaBits =
colorCfgs
[ndx].alphaBits;
135
configName += strlen(
colorCfgs
[ndx].name);
Completed in 1099 milliseconds