Lines Matching refs:config

34 from ctsbuild.config import ANY_GENERATOR
107 def getCommandLine (config):
110 if config.glconfig != None:
111 cmdLine += "--deqp-gl-config-name=%s " % config.glconfig
113 if config.rotation != None:
114 cmdLine += "--deqp-screen-rotation=%s " % config.rotation
116 if config.surfacetype != None:
117 cmdLine += "--deqp-surface-type=%s " % config.surfacetype
119 if config.surfacewidth != None:
120 cmdLine += "--deqp-surface-width=%s " % config.surfacewidth
122 if config.surfaceheight != None:
123 cmdLine += "--deqp-surface-height=%s " % config.surfaceheight
125 if config.baseseed != None:
126 cmdLine += "--deqp-base-seed=%s " % config.baseseed
128 if config.fboconfig != None:
129 cmdLine += "--deqp-gl-config-name=%s --deqp-surface-type=fbo " % config.fboconfig
245 for config in package.configurations:
247 caseListFile = getCaseListFileName(package, config),
248 commandLine = getCommandLine(config),
249 name = config.name,
250 os = str(config.os),
341 for config in package.configurations:
343 pConfigName = '"' + config.name + '",'
344 pGLConfig = getConfigName(config.glconfig) + ','
345 pRotation = '"' + config.rotation + '",'
346 pSeed = getIntBaseSeed(config.baseseed) + ','
347 pFBOConfig = getConfigName(config.fboconfig) + ','
348 pWidth = config.surfacewidth + ','
349 pHeight = config.surfaceheight
356 if config.os == "android":
359 if config.skipPlatform == "x11":
364 if config.skipPlatform == "x11":
367 if config.os == "android":
413 for config in package.configurations:
414 filtered = applyFilters(allCasesInPkg, patternLists, config.filters)
415 dstFile = getDstCaseListPath(mustpass, package, config)