5 Port remaining Glean tests to Piglit (discard Glean tests which are
6 already covered by Piglit).
7 See https://bugs.freedesktop.org/show_bug.cgi?id=65676 for more details.
10 Move/rename tests in the bugs/ directory to proper places under tests/spec/
13 Quite a few tests have GL enum names encoded in tables. For example, in
14 tests/texturing/texture-rg.c:
16 static const struct format_info IntFormats[] = {
17 { "GL_R8", GL_R8, GL_RED, GL_FALSE, GL_FALSE, GL_FALSE },
18 { "GL_R16", GL_R16, GL_RED, GL_FALSE, GL_FALSE, GL_FALSE },
19 { "GL_RG8", GL_RG8, GL_RG, GL_FALSE, GL_FALSE, GL_FALSE },
22 There's no reason to do this. The program could use piglit_get_gl_enum_name()
23 instead to convert GL enums to string names.