Home
last modified time | relevance | path

Searched refs:v_val (Results 1 – 5 of 5) sorted by relevance

/third_party/vk-gl-cts/data/gles31/shaders/es32/
Dseparate_shader_validation.test32 out mediump float v_val;
36 v_val = float(gl_VertexID);
47 in mediump float v_val;
50 ${FRAG_COLOR} = vec4(v_val);
66 out mediump float v_val;
69 v_val = float(gl_VertexID);
79 in mediump float v_val;
83 ${FRAG_COLOR} = vec4(v_val + v_val_no_such_output);
99 out mediump vec3 v_val;
102 v_val = vec3(float(gl_VertexID));
[all …]
/third_party/vk-gl-cts/data/gles31/shaders/es31/
Dseparate_shader_validation.test14 out mediump float v_val;
18 v_val = float(gl_VertexID);
29 in mediump float v_val;
32 ${FRAG_COLOR} = vec4(v_val);
48 out mediump float v_val;
51 v_val = float(gl_VertexID);
61 in mediump float v_val;
65 ${FRAG_COLOR} = vec4(v_val + v_val_no_such_output);
81 out mediump vec3 v_val;
84 v_val = vec3(float(gl_VertexID));
[all …]
/third_party/vk-gl-cts/data/gles2/shaders/
Dpreprocessor.test2628 varying float v_val;
2631 v_val = 1.0;
2638 invariant varying float v_val;
2641 out0 = v_val;
2653 varying float v_val;
2656 v_val = 1.0;
2668 varying float v_val;
2671 out0 = v_val;
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample_soa.c2314 LLVMValueRef v_val = LLVMBuildLoad2(builder, bld->int_coord_bld.vec_type, v_limiter, ""); in lp_build_sample_aniso() local
2315 LLVMValueRef v_mask = LLVMBuildICmp(builder, LLVMIntSLE, v_val, v1, ""); in lp_build_sample_aniso()
2322 lp_build_int_to_float(coord_bld, v_val), tex_v); in lp_build_sample_aniso()
2402 … new_coords[1] = lp_build_div(coord_bld, lp_build_int_to_float(coord_bld, v_val), height_dim); in lp_build_sample_aniso()
2458 v_val = LLVMBuildLoad2(builder, bld->int_coord_bld.vec_type, v_limiter, ""); in lp_build_sample_aniso()
2459 v_val = lp_build_add(&bld->int_coord_bld, v_val, bld->int_coord_bld.one); in lp_build_sample_aniso()
2460 LLVMBuildStore(builder, v_val, v_limiter); in lp_build_sample_aniso()
2464 v_val, in lp_build_sample_aniso()
/third_party/python/Python/
Dhamt.c2415 PyObject *v_val; in _PyHamt_Eq() local
2421 iter_res = hamt_iterator_next(&iter, &v_key, &v_val); in _PyHamt_Eq()
2432 int cmp = PyObject_RichCompareBool(v_val, w_val, Py_EQ); in _PyHamt_Eq()