aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/graph/curve/opengl/shader/precision.glsl
blob: 9924bd790b91472a9b0e403dca9e5ace5eabef87 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef precision_glsl
#define precision_glsl

#ifdef GL_ES
  precision mediump float;
  precision mediump int;
  precision mediump sampler2D;
#endif

#endif // precision_glsl