On 23 July 2012 15:28, 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 nothing is bound to draw buffer zero, GL_SAMPLE_ALPHA_TO_COVERAGE still needs<br>
to work properly.<br>
<br>
Note: Test case passes using NVIDIA's proprietary linux drivers but fails on Mesa<br>
i965 drivers.<br></blockquote><div><br>Reviewed-by: Paul Berry <<a href="mailto:stereotype441@gmail.com">stereotype441@gmail.com</a>><br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;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>
 .../alpha-to-coverage-no-draw-buffer-zero.cpp      |  141 ++++++++++++++++++++<br>
 3 files changed, 149 insertions(+), 0 deletions(-)<br>
 create mode 100644 tests/spec/ext_framebuffer_multisample/alpha-to-coverage-no-draw-buffer-zero.cpp<br>
<br>
diff --git a/tests/all.tests b/tests/all.tests<br>
index 74ddae5..b182b2b 100644<br>
--- a/tests/all.tests<br>
+++ b/tests/all.tests<br>
@@ -1447,6 +1447,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(['alpha-to-coverage-no-draw-buffer-zero', 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(['int-draw-buffers-alpha-to-one', 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 ec5d05f..7f2e670 100644<br>
--- a/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
+++ b/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
@@ -10,6 +10,8 @@ link_libraries (<br>
 )<br>
<br>
 piglit_add_executable (ext_framebuffer_multisample-accuracy common.cpp accuracy.cpp)<br>
+piglit_add_executable (ext_framebuffer_multisample-alpha-to-coverage-no-draw-buffer-zero common.cpp<br>
+                      draw-buffers-common.cpp alpha-to-coverage-no-draw-buffer-zero.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-alpha-to-one-msaa-disabled common.cpp<br>
                       draw-buffers-common.cpp alpha-to-one-msaa-disabled.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-alpha-to-one-single-sample-buffer common.cpp<br>
diff --git a/tests/spec/ext_framebuffer_multisample/alpha-to-coverage-no-draw-buffer-zero.cpp b/tests/spec/ext_framebuffer_multisample/alpha-to-coverage-no-draw-buffer-zero.cpp<br>
new file mode 100644<br>
index 0000000..ef60778<br>
--- /dev/null<br>
+++ b/tests/spec/ext_framebuffer_multisample/alpha-to-coverage-no-draw-buffer-zero.cpp<br>
@@ -0,0 +1,141 @@<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 alpha-to-coverage-no-draw-buffer-zero.cpp<br>
+ *<br>
+ * Verify sample alpha to coverage with multiple draw buffers when nothing<br>
+ * is bound to draw buffer zero.<br>
+ *<br>
+ * When nothing is bound to draw buffer zero, GL_SAMPLE_ALPHA_TO_COVERAGE<br>
+ * still needs to work properly for rest of the draw buffers. The alpha value<br>
+ * used to determine coverage should come from draw buffer zero.<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<br>
+ * drawn to right half of window system draw buffer and test images to left<br>
+ * half.<br>
+ *<br>
+ * Compute the expected color values for all the draw buffers.<br>
+ *<br>
+ * Probe all the draw buffers blitted to downsampled FBO (resolve_fbo) and<br>
+ * compare against expected color values.<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>
+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>
+       int samples;<br>
+       /* At present fragment shader supports only fixed number of<br>
+        * attachments (3)<br>
+        */<br>
+       int num_attachments = 3;<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>
+<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>
+<br>
+       ms_fbo_and_draw_buffers_setup(samples,<br>
+                                     pattern_width,<br>
+                                     pattern_height,<br>
+                                     num_attachments,<br>
+                                     GL_COLOR_BUFFER_BIT,<br>
+                                     GL_NONE /* color_buffer_zero_format */);<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>
+       /* Reference image drawn when sample_alpha_to_coverage is enabled,<br>
+        * doesn't represent an expected image. Reference image is drawn only<br>
+        * to visualize the image difference caused by enabling<br>
+        * sample_alpha_to_coverage<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>
+       /* Probe test images of all the draw_buffers blitted to resolve fbo<br>
+        * and compare with expected color values.  This method of verification<br>
+        * is appropriate for tests with sample-alpha-to-coverage enabled.<br>
+        * Possibility of dithering effect when the coverage value is not a<br>
+        * strict multiple of 1 / num_samples makes image compare (test /<br>
+        * reference image) unsuitable for this test.<br>
+        */<br>
+       pass = probe_framebuffer_color() && 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>
</font></span></blockquote></div><br>