This one needs to be asking for 1.20 too.
On Sun, Jul 6, 2014 at 6:03 PM, Matt Turner <[email protected]> wrote: > --- > .../compiler/literals/valid-float-exponent-with-suffix.vert | 12 > ++++++++++++ > 1 file changed, 12 insertions(+) > create mode 100644 > tests/spec/glsl-1.20/compiler/literals/valid-float-exponent-with-suffix.vert > > diff --git > a/tests/spec/glsl-1.20/compiler/literals/valid-float-exponent-with-suffix.vert > > b/tests/spec/glsl-1.20/compiler/literals/valid-float-exponent-with-suffix.vert > new file mode 100644 > index 0000000..f7a1fd7 > --- /dev/null > +++ > b/tests/spec/glsl-1.20/compiler/literals/valid-float-exponent-with-suffix.vert > @@ -0,0 +1,12 @@ > +// [config] > +// expect_result: pass > +// glsl_version: 1.10 > +// [end config] > + > +void main() { > + vec4 f = vec4(1e5f, -1e5f, 1e-5f, -1e-5f); > + vec4 g = vec4(1e5F, -1e5F, 1e-5F, -1e-5F); > + vec4 h = vec4(1E5f, -1E5f, 1E-5f, -1E-5f); > + vec4 i = vec4(1E5F, -1E5F, 1E-5F, -1E-5F); > + gl_Position = vec4(1.0); > +} > -- > 1.8.3.2 > > _______________________________________________ > Piglit mailing list > [email protected] > http://lists.freedesktop.org/mailman/listinfo/piglit _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
