Lines Matching refs:option
30 #define query_option_impl(option, type) \
31 options->option = driQueryOption##type(optionCache, #option)
32 #define query_bool_option(option) query_option_impl(option, b)
33 #define query_int_option(option) query_option_impl(option, i)
34 #define query_string_option(option) \
36 char *option = driQueryOptionstr(optionCache, #option); \
37 if (*option) \
38 options->option = strdup(option); \