mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
exa: exaOpReadsDestination(): Updated switch case formatting and reverted the use of tabs for indentation
This commit is contained in:
committed by
Enrico Weigelt
parent
a324351f67
commit
8574eecaa5
@@ -128,12 +128,13 @@ exaOpReadsDestination(CARD8 op)
|
||||
* That's just Clear and Src. ReduceCompositeOp() will already have
|
||||
* converted con/disjoint clear/src to Clear or Src.
|
||||
*/
|
||||
switch (op) {
|
||||
case PictOpClear:
|
||||
case PictOpSrc:
|
||||
return FALSE;
|
||||
default:
|
||||
return TRUE;
|
||||
switch(op)
|
||||
{
|
||||
case PictOpClear:
|
||||
case PictOpSrc:
|
||||
return FALSE;
|
||||
default:
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user