On 31 July 2012 20: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">
src0_alpha should be modified if sample-alpha-to-one is enabled.<br>
Both src0 and src1 colorcan be used to determine blending factors.<br>
<br>
Note: Test passes on mesa i965 drivers but fails on NVIDIA's proprietary<br>
linux drivers. No blending occurs with NVIDIA drivers when sample-alpha-to-one<br>
is enabled and num_samples > 0. Blending is observed for num_samples = 0.<br>
OpenGL specification says nothing specific about this scenario but test ouput<br>
by NVIDIA looks logically incorrect. Any thoughts?<br></blockquote><div><br>I believe the nVidia behaviour is correct.  When sample-alpha-to-one is enabled and num_samples > 0, no blending is expected, since all alpha values should get set to 1 before blending occurs.  When num_samples = 0, blending is expected, since according to the spec, sample-alpha-to-one should be ignored when multisampled rendering is disabled.<br>
<br>With my suggested changes to patch 1/3, this test passes on my nVidia system, so 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: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-one-dual-src-blend.cpp                |  123 ++++++++++++++++++++<br>
 3 files changed, 131 insertions(+), 0 deletions(-)<br>
 create mode 100644 tests/spec/ext_framebuffer_multisample/alpha-to-one-dual-src-blend.cpp<br>
<br>
diff --git a/tests/all.tests b/tests/all.tests<br>
index 7b66b27..741a141 100644<br>
--- a/tests/all.tests<br>
+++ b/tests/all.tests<br>
@@ -1481,6 +1481,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-one-dual-src-blend', 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 30f7d5b..3e9d172 100644<br>
--- a/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
+++ b/tests/spec/ext_framebuffer_multisample/CMakeLists.gl.txt<br>
@@ -14,6 +14,8 @@ piglit_add_executable (ext_framebuffer_multisample-alpha-to-coverage-no-draw-buf<br>
                       draw-buffers-common.cpp alpha-to-coverage-no-draw-buffer-zero.cpp)<br>
 piglit_add_executable (ext_framebuffer_multisample-alpha-to-coverage-dual-src-blend common.cpp<br>
                       draw-buffers-common.cpp alpha-to-coverage-dual-src-blend.cpp)<br>
+piglit_add_executable (ext_framebuffer_multisample-alpha-to-one-dual-src-blend common.cpp<br>
+                      draw-buffers-common.cpp alpha-to-one-dual-src-blend.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-one-dual-src-blend.cpp b/tests/spec/ext_framebuffer_multisample/alpha-to-one-dual-src-blend.cpp<br>
new file mode 100644<br>
index 0000000..4eb8dc8<br>
--- /dev/null<br>
+++ b/tests/spec/ext_framebuffer_multisample/alpha-to-one-dual-src-blend.cpp<br>
@@ -0,0 +1,123 @@<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-one-dual-src-blend.cpp<br>
+ *<br>
+ * Verify sample-alpha-to-one with dual source blending.<br>
+ *<br>
+ * This test operates by drawing a pattern in multisample FBO to generate<br>
+ * a reference and test image. Reference image is drawn to the right half of<br>
+ * window system draw buffer and test image to the 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>
+                   256 /*window_height*/,<br>
+                   GLUT_DOUBLE | GLUT_RGBA | GLUT_ALPHA)<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>
+       const int num_attachments = 1;<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>
+       ms_fbo_and_draw_buffers_setup(samples,<br>
+                                     pattern_width,<br>
+                                     pattern_height,<br>
+                                     num_attachments,<br>
+                                     GL_COLOR_BUFFER_BIT,<br>
+                                     GL_RGBA);<br>
+<br>
+       shader_compile(false /* sample_alpha_to_coverage */,<br>
+                      true /* dual_src_blend */);<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>
+       glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC1_ALPHA);<br>
+<br>
+       /* Reference image is drawn using expected color values and<br>
+        * represents an expected output for the test image.<br>
+        */<br>
+       draw_reference_image(false /* sample_alpha_to_coverage */,<br>
+                            true /* sample_alpha_to_one */);<br>
+<br>
+       glEnable(GL_BLEND);<br>
+       draw_test_image(false /* sample_alpha_to_coverage */,<br>
+                       true /* sample_alpha_to_one */);<br>
+<br>
+       glDisable(GL_BLEND);<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>
</font></span></blockquote></div><br>