1SKIP: FAILED 2 3#version 310 es 4precision mediump float; 5 6void dpdx_99edb1() { 7 vec2 res = ddx(vec2(0.0f, 0.0f)); 8} 9 10void fragment_main() { 11 dpdx_99edb1(); 12 return; 13} 14void main() { 15 fragment_main(); 16} 17 18 19Error parsing GLSL shader: 20ERROR: 0:5: 'ddx' : no matching overloaded function found 21ERROR: 0:5: '=' : cannot convert from ' const float' to ' temp mediump 2-component vector of float' 22ERROR: 0:5: '' : compilation terminated 23ERROR: 3 compilation errors. No code generated. 24 25 26 27