st/egl: add NATIVE_PARAM_PREMULTIPLIED_ALPHA
authorChia-I Wu <olv@lunarg.com>
Wed, 7 Sep 2011 17:39:27 +0000 (01:39 +0800)
committerChia-I Wu <olv@lunarg.com>
Thu, 8 Sep 2011 03:16:12 +0000 (11:16 +0800)
Return TRUE if the display supports premultiplied alpha.

src/gallium/state_trackers/egl/common/native.h

index 0c86b752c925ab2190a5afabc75d5c9ee6e9cd50..c85aedfa5e1165f04c20399650165d6770a66f83 100644 (file)
@@ -70,7 +70,13 @@ enum native_param_type {
    /**
     * Return the maximum supported swap interval.
     */
-   NATIVE_PARAM_MAX_SWAP_INTERVAL
+   NATIVE_PARAM_MAX_SWAP_INTERVAL,
+
+   /**
+    * Return TRUE if the display supports premultiplied alpha, regardless of
+    * the surface color format.
+    */
+   NATIVE_PARAM_PREMULTIPLIED_ALPHA
 };
 
 /**
@@ -85,6 +91,9 @@ struct native_present_control {
 
    /**< wait until the given vsyncs has passed since the last presentation */
    uint swap_interval;
+
+   /**< pixels use premultiplied alpha */
+   boolean premultiplied_alpha;
 };
 
 struct native_surface {