/third_party/mesa3d/src/util/tests/ |
H A D | xmlconfig.cpp | 25 #include <driconf.h> 69 driOptionDescription driconf[] = { in TEST_F() local 74 driParseOptionInfo(&options, driconf, ARRAY_SIZE(driconf)); in TEST_F() 82 driOptionDescription driconf[] = { in TEST_F() local 86 driParseOptionInfo(&options, driconf, ARRAY_SIZE(driconf)); in TEST_F() 93 driOptionDescription driconf[] = { in TEST_F() local 97 driParseOptionInfo(&options, driconf, ARRAY_SIZE(driconf)); in TEST_F() 104 driOptionDescription driconf[] = { TEST_F() local 115 driOptionDescription driconf[] = { TEST_F() local 128 driOptionDescription driconf[] = { TEST_F() local 139 driOptionDescription driconf[] = { TEST_F() local 158 driOptionDescription driconf[] = { TEST_F() local 201 driOptionDescription driconf[] = { drirc_init() local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/pipe-loader/ |
H A D | pipe_loader_drm.c | 260 return ddev->dd->driconf; in pipe_loader_drm_get_driconf() 275 driOptionDescription *driconf = NULL; in pipe_loader_drm_get_driconf_by_name() local 284 size_t size = sizeof(*driconf) * *count; in pipe_loader_drm_get_driconf_by_name() 285 driconf = malloc(size); in pipe_loader_drm_get_driconf_by_name() 286 memcpy(driconf, dd->driconf, size); in pipe_loader_drm_get_driconf_by_name() 291 return driconf; in pipe_loader_drm_get_driconf_by_name()
|
/third_party/mesa3d/src/gallium/auxiliary/target-helpers/ |
H A D | drm_helper.h | 8 #include "util/driconf.h" 16 .driconf = _driconf, \ 36 #define DRM_DRIVER_DESCRIPTOR(driver, driconf, driconf_count) \ 37 PUBLIC DEFINE_DRM_DRIVER_DESCRIPTOR(driver_descriptor, driver, driconf, driconf_count, pipe_##driver##_create_screen) 41 #define DRM_DRIVER_DESCRIPTOR_ALIAS(driver, alias, driconf, driconf_count) 45 #define DRM_DRIVER_DESCRIPTOR(driver, driconf, driconf_count) \ 46 DEFINE_DRM_DRIVER_DESCRIPTOR(driver##_driver_descriptor, driver, driconf, driconf_count, pipe_##driver##_create_screen) 57 #define DRM_DRIVER_DESCRIPTOR_ALIAS(driver, alias, driconf, driconf_count) \ 58 DEFINE_DRM_DRIVER_DESCRIPTOR(alias##_driver_descriptor, alias, driconf, \
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_screen.c | 376 return screen->driconf.disable_throttling ? 0 : 1; in crocus_get_param() 761 screen->driconf.dual_color_blend_by_location = in crocus_screen_create() 763 screen->driconf.disable_throttling = in crocus_screen_create() 765 screen->driconf.always_flush_cache = in crocus_screen_create() 767 screen->driconf.limit_trig_input_range = in crocus_screen_create()
|
H A D | crocus_screen.h | 196 /** driconf options and application workarounds */ 203 } driconf; member
|
H A D | crocus_context.h | 830 if (unlikely(batch->screen->driconf.always_flush_cache)) \
|
H A D | crocus_program.c | 56 .base.limit_trig_input_range = screen->driconf.limit_trig_input_range, \
|
H A D | crocus_state.c | 4849 screen->driconf.dual_color_blend_by_location && in crocus_populate_fs_key()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_screen.c | 380 return screen->driconf.disable_throttling ? 0 : 1; in iris_get_param() 836 screen->driconf.dual_color_blend_by_location = in iris_screen_create() 838 screen->driconf.disable_throttling = in iris_screen_create() 840 screen->driconf.always_flush_cache = in iris_screen_create() 842 screen->driconf.sync_compile = in iris_screen_create() 844 screen->driconf.limit_trig_input_range = in iris_screen_create()
|
H A D | iris_screen.h | 178 /** driconf options and application workarounds */ 186 } driconf; member
|
H A D | iris_context.h | 941 if (unlikely(batch->screen->driconf.always_flush_cache)) \
|
H A D | iris_program.c | 53 .prefix.limit_trig_input_range = screen->driconf.limit_trig_input_range 1293 if (screen->driconf.sync_compile || dbg) in iris_schedule_compile()
|
H A D | iris_state.c | 4447 screen->driconf.dual_color_blend_by_location && in iris_populate_fs_key()
|
/third_party/mesa3d/src/gallium/include/frontend/ |
H A D | drm_driver.h | 23 * driver-specific driconf options. 25 const struct driOptionDescription *driconf; member 27 /* Number of entries in the driconf array. */
|
/third_party/mesa3d/src/util/ |
H A D | driconf_static.py | 154 %for device in driconf.devices: 221 static const struct driconf_device *driconf[] = { 222 %for device in driconf.devices: 232 f.write(Template(template, output_encoding='utf-8').render(driconf=DriConf(xml)))
|
H A D | xmlconfig.c | 340 /* for driconf xml generation, options must always be preceded by a in driParseOptionInfo() 837 [OC_DRICONF] = "driconf", 867 XML_WARNING1("nested <driconf> elements."); in optConfStartElem() 869 XML_WARNING1("attributes specified on <driconf> element."); in optConfStartElem() 874 XML_WARNING1("<device> should be inside <driconf>."); in optConfStartElem() 1093 for (unsigned i = 0; i < ARRAY_SIZE(driconf); i++) { in parseStaticConfig() 1094 const struct driconf_device *d = driconf[i]; in parseStaticConfig()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_screen.h | 199 } driconf; member
|
H A D | zink_state.c | 423 bool force_dual_color_blend = zink_screen(pctx->screen)->driconf.dual_color_blend_by_location && in zink_bind_blend_state()
|
H A D | zink_screen.c | 2167 screen->driconf.dual_color_blend_by_location = driQueryOptionb(config->options, "dual_color_blend_by_location"); in zink_internal_create_screen() 2168 //screen->driconf.inline_uniforms = driQueryOptionb(config->options, "radeonsi_inline_uniforms"); in zink_internal_create_screen() 2335 screen->driconf.inline_uniforms = debug_get_bool_option("ZINK_INLINE_UNIFORMS", screen->is_cpu); in zink_internal_create_screen()
|
H A D | zink_compiler.c | 2157 if (screen->driconf.inline_uniforms) { in zink_shader_compile() 3084 if (!screen->driconf.inline_uniforms) { in zink_shader_create() 3240 if (screen->driconf.inline_uniforms) in zink_shader_finalize()
|