Browse Source

Shaders: properly test all constructor combinations of Flat.

pull/364/head
Vladimír Vondruš 7 years ago
parent
commit
6a5a5496f5
  1. 4
      src/Magnum/Shaders/Test/FlatGLTest.cpp

4
src/Magnum/Shaders/Test/FlatGLTest.cpp

@ -111,7 +111,9 @@ constexpr struct {
Flat2D::Flags flags;
} ConstructData[]{
{"", {}},
{"textured", Flat2D::Flag::Textured}
{"textured", Flat2D::Flag::Textured},
{"alpha mask", Flat2D::Flag::AlphaMask},
{"alpha mask + textured", Flat2D::Flag::AlphaMask|Flat2D::Flag::Textured}
};
const struct {

Loading…
Cancel
Save