arb_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests
[piglit.git] / tests / spec / glsl-1.20 / compiler / arithmetic-operators / modulus-00.frag
blobd29d57aac440a9348565dbecc3d84e8e24dfd376
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.20
4 // [end config]
5 //
6 // The modulus operator '%' is reserved.
7 //
8 // From section 5.9 of the GLSL 1.20 spec:
9 //     The operator modulus (%) is reserved for future use.
11 #version 120
13 int
14 f() {
15     int tea_time = 15 % 24;
16     return tea_time;