18 lines
268 B
C++
18 lines
268 B
C++
|
|
#include "PassElement.hpp"
|
||
|
|
|
||
|
|
std::optional<CBox> IPassElement::boundingBox() {
|
||
|
|
return std::nullopt;
|
||
|
|
}
|
||
|
|
|
||
|
|
CRegion IPassElement::opaqueRegion() {
|
||
|
|
return {};
|
||
|
|
}
|
||
|
|
|
||
|
|
bool IPassElement::disableSimplification() {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
void IPassElement::discard() {
|
||
|
|
;
|
||
|
|
}
|