Home
last modified time | relevance | path

Searched refs:coord_expr (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/spirv-cross/
Dspirv_hlsl.cpp3045 string coord_expr; in emit_texture_op() local
3048coord_expr = to_enclosed_expression(coord) + swizzle(coord_components, expression_type(coord).vecs… in emit_texture_op()
3050 coord_expr = to_expression(coord); in emit_texture_op()
3053 coord_expr = coord_expr + " / " + to_extract_component_expression(coord, coord_components); in emit_texture_op()
3069 coord_expr += ", 0.0"; in emit_texture_op()
3072 coord_expr += ", " + to_expression(dref); in emit_texture_op()
3077 coord_expr += ", 0.0"; in emit_texture_op()
3082 coord_expr = "float4(" + coord_expr + ", " + to_expression(lod) + ")"; in emit_texture_op()
3086 coord_expr = "float4(" + coord_expr + ", " + to_expression(bias) + ")"; in emit_texture_op()
3090coord_expr = "float4(" + coord_expr + ", " + to_extract_component_expression(coord, coord_componen… in emit_texture_op()
[all …]
Dspirv_glsl.cpp7026 auto coord_expr = in to_function_args() local
7036 coord_expr = bitcast_expression(expected_type, coord_type.basetype, coord_expr); in to_function_args()
7097 farg_str += coord_expr; in to_function_args()
7106 farg_str += coord_expr; in to_function_args()
11843 auto coord_expr = to_expression(ops[3]); in emit_instruction() local
11846 coord_expr = bitcast_expression(target_coord_type, expression_type(ops[3]).basetype, coord_expr); in emit_instruction()
11860coord_expr, ", ", to_expression(samples), ", ", to_expression(sparse_texel_id), ");"); in emit_instruction()
11865 coord_expr, ", ", to_expression(sparse_texel_id), ");"); in emit_instruction()
11881 …join("imageLoad(", to_non_uniform_aware_expression(ops[2]), ", ", coord_expr, ", ", to_expression(… in emit_instruction()
11884 imgexpr = join("imageLoad(", to_non_uniform_aware_expression(ops[2]), ", ", coord_expr, ")"); in emit_instruction()
[all …]
Dspirv_msl.cpp9502 auto coord_expr = to_enclosed_expression(args.coord); in to_function_args() local
9507 string tex_coords = coord_expr; in to_function_args()