Since glslx doesn't support preprocessing, how to check e.g. if highp is available in a fragment shader ? ``` #ifndef GL_FRAGMENT_PRECISION_HIGH precision mediump float; #else precision highp float; #endif ```
Since glslx doesn't support preprocessing, how to check e.g. if highp is available in a fragment shader ?