summaryrefslogtreecommitdiff
path: root/FIGURING-OUT-WHAT-TO-REDRAW
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2007-04-07 17:48:51 -0400
committerRay Strode <rstrode@redhat.com>2007-04-07 17:48:51 -0400
commitd0db311da9df58ad396477c918ce9a44fe464e57 (patch)
tree426d202994d15bca3fd3dedcbdae5ca95bdc0945 /FIGURING-OUT-WHAT-TO-REDRAW
parent9330de7f7cc99bad600acbd78b10b6b79ed80dba (diff)
add config.h to the top of every source file
Diffstat (limited to 'FIGURING-OUT-WHAT-TO-REDRAW')
-rw-r--r--FIGURING-OUT-WHAT-TO-REDRAW2
1 files changed, 1 insertions, 1 deletions
diff --git a/FIGURING-OUT-WHAT-TO-REDRAW b/FIGURING-OUT-WHAT-TO-REDRAW
index b91c959..d8d32cf 100644
--- a/FIGURING-OUT-WHAT-TO-REDRAW
+++ b/FIGURING-OUT-WHAT-TO-REDRAW
@@ -22,7 +22,7 @@ One possible way to solve the problem is to institute a sort comparison
function that returns the difference of two views. This function would
return an area that encompasses the part of the first view that doesn't
overlap with the second view. In addition, the area would need to
-account for (include) overlapping areas where the second view isn't
+account for (I mean, include) overlapping areas where the second view isn't
fully opaque. To figure out which part of a given view needs to be
redrawn, the application would call the comparison function for that
view against all of the views that are higher in the stack than it. The