Package: cairo
CEnum cairo-content-t
Details The cairo-content-t enumeration is used to describe the content that
a surface will contain, whether color information, alpha information
(translucence vs. opacity), or both. Note: The large values here are designed to keep cairo-content-t values distinct from cairo-format-t values so that the implementation can detect the error if users confuse the two types. (defcenum cairo-content-t (:color #x1000) (:alpha #x2000) (:color-alpha #x3000))
| See also |
*2021-5-13