Lines Matching refs:tex_options
837 const nir_lower_tex_options tex_options = {
854 OPT(nir_lower_tex, &tex_options);
1329 nir_lower_tex_options tex_options = {
1337 tex_options.lower_rect = true;
1341 tex_options.saturate_s = key_tex->gl_clamp_mask[0];
1342 tex_options.saturate_t = key_tex->gl_clamp_mask[1];
1343 tex_options.saturate_r = key_tex->gl_clamp_mask[2];
1347 tex_options.lower_txd_shadow = devinfo->verx10 <= 70;
1349 tex_options.lower_y_uv_external = key_tex->y_uv_image_mask;
1350 tex_options.lower_y_u_v_external = key_tex->y_u_v_image_mask;
1351 tex_options.lower_yx_xuxv_external = key_tex->yx_xuxv_image_mask;
1352 tex_options.lower_xy_uxvx_external = key_tex->xy_uxvx_image_mask;
1353 tex_options.lower_ayuv_external = key_tex->ayuv_image_mask;
1354 tex_options.lower_xyuv_external = key_tex->xyuv_image_mask;
1355 tex_options.bt709_external = key_tex->bt709_mask;
1356 tex_options.bt2020_external = key_tex->bt2020_mask;
1359 memcpy(&tex_options.scale_factors, &key_tex->scale_factors,
1360 sizeof(tex_options.scale_factors));
1362 return nir_lower_tex(nir, &tex_options);