aboutsummaryrefslogtreecommitdiff
path: root/tests/glx
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2013-01-28 16:38:44 -0800
committerIan Romanick <ian.d.romanick@intel.com>2013-01-29 11:48:33 -0800
commit39ef626e49246d1ce43ce12ccb13f81faeba604a (patch)
tree1133272471fda238473d3756252593020826b83c /tests/glx
parent96154d73546b84cc249142d59d9d1bdc0529f72e (diff)
glx-swap-pixmap: Expect alpha = 1.0 if there is no alpha in the pixmap
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=59833 Reviewed-by: Carl Worth <cworth@cworth.org> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'tests/glx')
-rw-r--r--tests/glx/glx-swap-pixmap.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/tests/glx/glx-swap-pixmap.c b/tests/glx/glx-swap-pixmap.c
index 1a91578a..855396a0 100644
--- a/tests/glx/glx-swap-pixmap.c
+++ b/tests/glx/glx-swap-pixmap.c
@@ -44,9 +44,11 @@ main(int argc, char **argv)
{
Pixmap p;
GLXPixmap g;
- float green[4] = {0.0, 1.0, 0.0, 0.0};
+ static const float green_alpha_zero[4] = {0.0, 1.0, 0.0, 0.0};
+ static const float green_alpha_one[4] = {0.0, 1.0, 0.0, 1.0};
GLXContext ctx;
bool pass;
+ GLint alpha_bits;
dpy = XOpenDisplay(NULL);
if (dpy == NULL) {
@@ -80,7 +82,17 @@ main(int argc, char **argv)
*/
XSync(dpy, False);
- pass = piglit_probe_rect_rgba(0, 0, piglit_width, piglit_height, green);
+ /* If the visual has no alpha, then the GL spec requires that 1.0 be
+ * read back. Otherwise, we should read back the 0.0 that we wrote.
+ */
+ glGetIntegerv(GL_ALPHA_BITS, &alpha_bits);
+ if (alpha_bits == 0) {
+ pass = piglit_probe_rect_rgba(0, 0, piglit_width, piglit_height,
+ green_alpha_one);
+ } else {
+ pass = piglit_probe_rect_rgba(0, 0, piglit_width, piglit_height,
+ green_alpha_zero);
+ }
glXDestroyPixmap(dpy, g);