On 11 July 2012 16:17, 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 rendering to multiple draw buffers, GL_SAMPLE_TO_ONE should modify<br>
the alpha values sent to each draw buffer.<br>
<br>
OpenGL 3.3 specification's section 4.1.3 is little unclear about the exact<br>
behavior in above mentioned case. So, this test assumes the behavior shown<br>
by NVIDIA's proprietary drivers.<br>
<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>
 .../draw-buffers-alpha-to-one.cpp                  |  131 ++++++++++++++++++++<br>
 3 files changed, 139 insertions(+), 0 deletions(-)<br>
 create mode 100644 tests/spec/ext_framebuffer_multisample/draw-buffers-alpha-to-one.cpp<br>
<br>
diff --git a/tests/all.tests b/tests/all.tests<br>
index b133dde..e93ea5f 100644<br>
--- a/tests/all.tests<br>
+++ b/tests/all.tests<br>
@@ -1431,6 +1431,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(['draw-buffers-alpha-to-one', 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 b2b7b51..716e4f3 100644<br>
--- a/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
+++ b/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
@@ -16,6 +16,8 @@ piglit_add_executable (ext_framebuffer_multisample-blit-mismatched-sizes common.<br>
 piglit_add_executable (ext_framebuffer_multisample-blit-mismatched-formats common.cpp blit-mismatched-formats.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-clear common.cpp clear.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-clip-and-scissor-blit common.cpp clip-and-scissor-blit.cpp)<br>
+piglit_add_executable (ext_framebuffer_multisample-draw-buffers-alpha-to-one common.cpp<br>
+                      draw-buffers-common.cpp draw-buffers-alpha-to-one.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-dlist dlist.c)<br>
 piglit_add_executable (ext_framebuffer_multisample-enable-flag enable-flag.cpp common.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-formats common.cpp formats.cpp)<br>
diff --git a/tests/spec/ext_framebuffer_multisample/draw-buffers-alpha-to-one.cpp b/tests/spec/ext_framebuffer_multisample/draw-buffers-alpha-to-one.cpp<br>
new file mode 100644<br>
index 0000000..f98ba66<br>
--- /dev/null<br>
+++ b/tests/spec/ext_framebuffer_multisample/draw-buffers-alpha-to-one.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 draw-buffers-alpha-to-one.cpp<br>
+ *<br>
+ * Verify sample alpha to one with multiple draw buffers<br>
+ *<br>
+ * When rendering to multiple draw buffers, GL_SAMPLE_TO_ONE should modify the<br>
+ * alpha values sent to each draw buffer. OpenGL 3.3 specification's section<br>
+ * 4.1.3 is little unclear about the exact behavior in above mentioned case.<br>
+ * This section probably needs clarification from khronos. At present test is<br>
+ * based on the behavior observed with NVIDIA's proprietary drivers.<br></blockquote><div><br>Can you add a few sentences explaining what is ambiguous in the spec (I used to know, but I can't remember anymore)?  Also it would be nice to say a few words about what behaviour you've observed with the NVIDIA proprietary driver.<br>
<br>Other than that, this patch is:<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>
+ * 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>
+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>
+       /* 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_RGBA);<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(false /* sample_alpha_to_coverage */,<br>
+                            true /* sample_alpha_to_one */);<br>
+<br>
+       draw_test_image(false /* sample_alpha_to_coverage */,<br>
+                       true /* 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>