include/vcl/rendercontext/RasterOp.hxx |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit de41a28e9aab0c1b05f32e60c1c74b47c6857300
Author:     Noel Grandin <noelgran...@gmail.com>
AuthorDate: Sat Jan 18 21:03:20 2025 +0200
Commit:     Noel Grandin <noelgran...@gmail.com>
CommitDate: Sun Jan 19 17:30:35 2025 +0100

    document RasterOp a little
    
    Change-Id: If0a13b7e76684b12cd68566429ca0c6a285fc989
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180468
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/include/vcl/rendercontext/RasterOp.hxx 
b/include/vcl/rendercontext/RasterOp.hxx
index 44b2a6c03a17..3bfa85fb6044 100644
--- a/include/vcl/rendercontext/RasterOp.hxx
+++ b/include/vcl/rendercontext/RasterOp.hxx
@@ -19,12 +19,13 @@
 
 #pragma once
 
+// Note that the values in this class must line up exactly with the values in 
css::awt::RasterOperation
 enum class RasterOp
 {
     OverPaint,
     Xor,
-    N0,
-    N1,
+    N0, // All bits which are affected by this operation are set to 0.
+    N1, // All bits which are affected by this operation are set to 1.
     Invert
 };
 

Reply via email to