2010-12-22 21:39:39 +00:00
|
|
|
/*
|
|
|
|
Copyright 2010 Google Inc.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GrClip_DEFINED
|
|
|
|
#define GrClip_DEFINED
|
|
|
|
|
|
|
|
#include "GrClipIterator.h"
|
|
|
|
#include "GrRect.h"
|
2011-03-03 13:54:13 +00:00
|
|
|
#include "GrPath.h"
|
|
|
|
#include "GrTArray.h"
|
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
class GrClip {
|
|
|
|
public:
|
|
|
|
GrClip();
|
|
|
|
GrClip(const GrClip& src);
|
2011-03-04 22:27:10 +00:00
|
|
|
/**
|
|
|
|
* If specified, the bounds parameter already takes (tx,ty) into account.
|
|
|
|
*/
|
|
|
|
GrClip(GrClipIterator* iter, GrScalar tx, GrScalar ty,
|
|
|
|
const GrRect* bounds = NULL);
|
2011-03-03 13:54:13 +00:00
|
|
|
GrClip(const GrIRect& rect);
|
|
|
|
GrClip(const GrRect& rect);
|
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
~GrClip();
|
|
|
|
|
|
|
|
GrClip& operator=(const GrClip& src);
|
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
bool hasBounds() const { return fBoundsValid; }
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
const GrRect& getBounds() const { return fBounds; }
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
int getElementCount() const { return fList.count(); }
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
GrClipType getElementType(int i) const { return fList[i].fType; }
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
const GrPath& getPath(int i) const {
|
|
|
|
GrAssert(kPath_ClipType == fList[i].fType);
|
|
|
|
return fList[i].fPath;
|
|
|
|
}
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
GrPathFill getPathFill(int i) const {
|
|
|
|
GrAssert(kPath_ClipType == fList[i].fType);
|
|
|
|
return fList[i].fPathFill;
|
2010-12-22 21:39:39 +00:00
|
|
|
}
|
2011-03-03 13:54:13 +00:00
|
|
|
|
|
|
|
const GrRect& getRect(int i) const {
|
|
|
|
GrAssert(kRect_ClipType == fList[i].fType);
|
|
|
|
return fList[i].fRect;
|
2010-12-22 21:39:39 +00:00
|
|
|
}
|
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
const GrSetOp getOp(int i) const { return fList[i].fOp; }
|
|
|
|
|
|
|
|
bool isRect() const {
|
|
|
|
if (1 == fList.count() && kRect_ClipType == fList[0].fType) {
|
|
|
|
GrAssert(fBoundsValid);
|
|
|
|
GrAssert(fBounds == fList[0].fRect);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2010-12-22 21:39:39 +00:00
|
|
|
}
|
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
bool isEmpty() const { return 0 == fList.count(); }
|
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
/**
|
2011-03-03 13:54:13 +00:00
|
|
|
* Resets this clip to be empty
|
2010-12-22 21:39:39 +00:00
|
|
|
*/
|
2011-03-03 13:54:13 +00:00
|
|
|
void setEmpty();
|
2011-03-04 22:27:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If specified, the bounds parameter already takes (tx,ty) into account.
|
|
|
|
*/
|
|
|
|
void setFromIterator(GrClipIterator* iter, GrScalar tx, GrScalar ty,
|
|
|
|
const GrRect* bounds = NULL);
|
2011-03-03 13:54:13 +00:00
|
|
|
void setFromRect(const GrRect& rect);
|
|
|
|
void setFromIRect(const GrIRect& rect);
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-03-03 13:54:13 +00:00
|
|
|
friend bool operator==(const GrClip& a, const GrClip& b) {
|
|
|
|
if (a.fList.count() != b.fList.count()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
int count = a.fList.count();
|
|
|
|
for (int i = 0; i < count; ++i) {
|
|
|
|
if (a.fList[i] != b.fList[i]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
friend bool operator!=(const GrClip& a, const GrClip& b) {
|
|
|
|
return !(a == b);
|
|
|
|
}
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
private:
|
2011-03-03 13:54:13 +00:00
|
|
|
struct Element {
|
|
|
|
GrClipType fType;
|
|
|
|
GrRect fRect;
|
|
|
|
GrPath fPath;
|
|
|
|
GrPathFill fPathFill;
|
|
|
|
GrSetOp fOp;
|
|
|
|
bool operator ==(const Element& e) const {
|
|
|
|
if (e.fType != fType || e.fOp != fOp) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (fType) {
|
|
|
|
case kRect_ClipType:
|
|
|
|
return fRect == e.fRect;
|
|
|
|
break;
|
|
|
|
case kPath_ClipType:
|
|
|
|
return fPath == e.fPath;
|
|
|
|
default:
|
|
|
|
GrCrash("Unknown clip element type.");
|
|
|
|
return false; // suppress warning
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool operator !=(const Element& e) const { return !(*this == e); }
|
|
|
|
};
|
|
|
|
|
|
|
|
GrRect fBounds;
|
|
|
|
bool fBoundsValid;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kPreAllocElements = 4,
|
|
|
|
};
|
|
|
|
uint8_t fListMemory[sizeof(Element) * kPreAllocElements];
|
|
|
|
GrTArray<Element> fList;
|
2010-12-22 21:39:39 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|