On 11 July 2012 16:18, Anuj Phogat <span dir="ltr"><<a href="mailto:anuj.phogat@gmail.com" target="_blank">anuj.phogat@gmail.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
When draw buffer zero is bound to an integer format buffer,<br>
GL_SAMPLE_ALPHA_TO_COVERAGE should have no effect. This should work<br>
properly even if there are other draw buffers that are not in integer<br>
format.<br>
<br>
Note: This test currently fails with Mesa on my Sandybridge system.<br></blockquote><div><br>Patches 3-5 are:<br><br>Reviewed-by: Paul Berry <<a href="mailto:stereotype441@gmail.com">stereotype441@gmail.com</a>><br>
 </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
Signed-off-by: Anuj Phogat <<a href="mailto:anuj.phogat@gmail.com">anuj.phogat@gmail.com</a>><br>
---<br>
 tests/all.tests                                    |    6 +<br>
 .../ext_framebuffer_multisample/CMakeLists.gl.txt  |    2 +<br>
 .../int-draw-buffers-alpha-to-coverage.cpp         |  131 ++++++++++++++++++++<br>
 3 files changed, 139 insertions(+), 0 deletions(-)<br>
 create mode 100644 tests/spec/ext_framebuffer_multisample/int-draw-buffers-alpha-to-coverage.cpp<br>
<br>
diff --git a/tests/all.tests b/tests/all.tests<br>
index 63d3994..06abfb0 100644<br>
--- a/tests/all.tests<br>
+++ b/tests/all.tests<br>
@@ -1449,6 +1449,12 @@ for num_samples in MSAA_SAMPLE_COUNTS:<br>
         ext_framebuffer_multisample[test_name] = PlainExecTest(executable)<br>
<br>
 for num_samples in MSAA_SAMPLE_COUNTS:<br>
+        test_name = ' '.join(['int-draw-buffers-alpha-to-coverage', str(num_samples)])<br>
+        executable = 'ext_framebuffer_multisample-{0} -auto'.format(<br>
+                test_name)<br>
+        ext_framebuffer_multisample[test_name] = PlainExecTest(executable)<br>
+<br>
+for num_samples in MSAA_SAMPLE_COUNTS:<br>
         test_name = ' '.join(['bitmap', str(num_samples)])<br>
         executable = 'ext_framebuffer_multisample-{0} -auto'.format(<br>
                 test_name)<br>
diff --git a/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt b/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
index ad64321..81aa42e 100644<br>
--- a/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
+++ b/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
@@ -26,6 +26,8 @@ piglit_add_executable (ext_framebuffer_multisample-formats common.cpp formats.cp<br>
 piglit_add_executable (ext_framebuffer_multisample-interpolation common.cpp interpolation.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-int-draw-buffers-alpha-to-one common.cpp<br>
                       draw-buffers-common.cpp int-draw-buffers-alpha-to-one.cpp)<br>
+piglit_add_executable (ext_framebuffer_multisample-int-draw-buffers-alpha-to-coverage common.cpp<br>
+                      draw-buffers-common.cpp int-draw-buffers-alpha-to-coverage.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-line-smooth common.cpp line-smooth.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-minmax minmax.c)<br>
 piglit_add_executable (ext_framebuffer_multisample-multisample-blit common.cpp multisample-blit.cpp)<br>
diff --git a/tests/spec/ext_framebuffer_multisample/int-draw-buffers-alpha-to-coverage.cpp b/tests/spec/ext_framebuffer_multisample/int-draw-buffers-alpha-to-coverage.cpp<br>
new file mode 100644<br>
index 0000000..c197a83<br>
--- /dev/null<br>
+++ b/tests/spec/ext_framebuffer_multisample/int-draw-buffers-alpha-to-coverage.cpp<br>
@@ -0,0 +1,131 @@<br>
+/*<br>
+ * Copyright © 2012 Intel Corporation<br>
+ *<br>
+ * Permission is hereby granted, free of charge, to any person obtaining a<br>
+ * copy of this software and associated documentation files (the "Software"),<br>
+ * to deal in the Software without restriction, including without limitation<br>
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,<br>
+ * and/or sell copies of the Software, and to permit persons to whom the<br>
+ * Software is furnished to do so, subject to the following conditions:<br>
+ *<br>
+ * The above copyright notice and this permission notice (including the next<br>
+ * paragraph) shall be included in all copies or substantial portions of the<br>
+ * Software.<br>
+ *<br>
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR<br>
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br>
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL<br>
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER<br>
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING<br>
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS<br>
+ * IN THE SOFTWARE.<br>
+ */<br>
+<br>
+#include "draw-buffers-common.h"<br>
+<br>
+/**<br>
+ * \file int-draw-buffers-alpha-to-coverage.cpp<br>
+ *<br>
+ * Verify sample alpha to coverage with integer draw buffers.<br>
+ *<br>
+ * When draw buffer zero is bound to an integer format buffer,<br>
+ * GL_SAMPLE_ALPHA_TO_COVERAGE should have no effect. This should work<br>
+ * properly even if there are other draw buffers that are not in integer<br>
+ * format.<br>
+ *<br>
+ * This test operates by drawing a pattern in multisample FBO to generate<br>
+ * reference and test images for all the draw buffers. Reference images are drawn<br>
+ * to right half of window system draw buffer and test images to left half.<br>
+ *<br>
+ * Compare the left and right halves of window system frame buffer to verify<br>
+ * the test image.<br>
+ *<br>
+ * Author: Anuj Phogat <<a href="mailto:anuj.phogat@gmail.com">anuj.phogat@gmail.com</a>><br>
+ */<br>
+<br>
+PIGLIT_GL_TEST_MAIN(512 /*window_width*/,<br>
+                   768 /*window_height*/,<br>
+                   GLUT_DOUBLE | GLUT_RGBA | GLUT_ALPHA)<br>
+<br>
+/* At present fragment shader in draw-buffers-common.cpp supports only<br>
+ * fixed number of attachments = 3.<br>
+ */<br>
+static int num_attachments = 3;<br>
+static int samples;<br>
+<br>
+void<br>
+print_usage_and_exit(char *prog_name)<br>
+{<br>
+        printf("Usage: %s <num_samples>\n", prog_name);<br>
+       piglit_report_result(PIGLIT_FAIL);<br>
+}<br>
+<br>
+void<br>
+piglit_init(int argc, char **argv)<br>
+{<br>
+<br>
+       if (argc < 2)<br>
+               print_usage_and_exit(argv[0]);<br>
+       {<br>
+               char *endptr = NULL;<br>
+               samples = strtol(argv[1], &endptr, 0);<br>
+               if (endptr != argv[1] + strlen(argv[1]))<br>
+                       print_usage_and_exit(argv[0]);<br>
+       }<br>
+<br>
+       piglit_require_gl_version(30);<br>
+<br>
+       int pattern_width = piglit_width / 2;<br>
+       int pattern_height = piglit_height / num_attachments;<br>
+<br>
+       piglit_ortho_projection(pattern_width,<br>
+                               pattern_height,<br>
+                               GL_TRUE);<br>
+       /* Skip the test if samples > GL_MAX_SAMPLES */<br>
+       GLint max_samples;<br>
+       glGetIntegerv(GL_MAX_SAMPLES, &max_samples);<br>
+<br>
+       if (samples > max_samples)<br>
+               piglit_report_result(PIGLIT_SKIP);<br>
+       /* Testing of integer formats other than GL_RGBA8I is not supported<br>
+        * by utility functions in draw-buffers-common.cpp.<br>
+        */<br>
+       ms_fbo_and_draw_buffers_setup(samples,<br>
+                                     pattern_width,<br>
+                                     pattern_height,<br>
+                                     num_attachments,<br>
+                                     GL_RGBA8I);<br>
+       shader_compile();<br>
+}<br>
+<br>
+enum piglit_result<br>
+piglit_display()<br>
+{<br>
+       bool pass = true;<br>
+       glBindFramebuffer(GL_DRAW_FRAMEBUFFER, 0);<br>
+       glClearColor(0.0, 0.0, 0.0, 1.0);<br>
+       glClear(GL_COLOR_BUFFER_BIT);<br>
+       allocate_data_arrays();<br>
+<br>
+       draw_reference_image(true /* sample_alpha_to_coverage */,<br>
+                            false /* sample_alpha_to_one */);<br>
+<br>
+       draw_test_image(true /* sample_alpha_to_coverage */,<br>
+                       false /* sample_alpha_to_one */);<br>
+<br>
+       pass = piglit_check_gl_error(GL_NO_ERROR) && pass;<br>
+<br>
+        glBindFramebuffer(GL_READ_FRAMEBUFFER, 0);<br>
+       pass = piglit_probe_rect_halves_equal_rgba(0, 0,<br>
+                                                  piglit_width,<br>
+                                                  piglit_height)<br>
+              && pass;<br>
+<br>
+       /* Free the memory allocated for data arrays */<br>
+       free_data_arrays();<br>
+<br>
+       if (!piglit_automatic)<br>
+               piglit_present_results();<br>
+<br>
+       return pass ? PIGLIT_PASS : PIGLIT_FAIL;<br>
+}<br>
<span class="HOEnZb"><font color="#888888">--<br>
1.7.7.6<br>
<br>
_______________________________________________<br>
Piglit mailing list<br>
<a href="mailto:Piglit@lists.freedesktop.org">Piglit@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/piglit" target="_blank">http://lists.freedesktop.org/mailman/listinfo/piglit</a><br>
</font></span></blockquote></div><br>