~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/gl_subdata.cpp

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-06-11 15:45:24 UTC
  • mfrom: (1.2.1) (2.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130611154524-rppb3w6tixlegv4n
Tags: 1.4.7~20130611~a1eb425-1
* New snapshot release
* Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
}
10
10
static const char vertex_shader[] =
11
11
        "#ifdef GL_ES\n"
12
 
        "precision highp float;\n"
 
12
        "precision lowp float;\n"
13
13
        "#endif\n"
14
14
        "attribute float indices;\n"
15
15
        "uniform sampler2D nodeInfo;\n"
25
25
        "}\n";
26
26
static const char fragment_shader[] =
27
27
        "#ifdef GL_ES\n"
28
 
        "precision highp float;\n"
 
28
        "precision lowp float;\n"
29
29
        "#endif\n"
30
30
        "\n"
31
31
        "varying vec4 color;\n"