Re: [android-developers] Re: Call glGetShaderPrecisionFormat before GLSurfaceView created
I'm interested.I haven't found workaround so until then I wanted to disable the feature from ui.Could you be more specific about 10-bits-mediump fragment precision workaround?
As I said that really depend what is your issue, I use several different techniques for this, as I mention on mali-t604 (Nexus 10) you can use highp - you can use build in define GL_FRAGMENT_PRECISION_HIGH in you fragment shader:
#if GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home