2024-12-22 17:12:09 +01:00
|
|
|
#include "PassElement.hpp"
|
|
|
|
|
|
|
|
|
|
std::optional<CBox> IPassElement::boundingBox() {
|
|
|
|
|
return std::nullopt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CRegion IPassElement::opaqueRegion() {
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool IPassElement::disableSimplification() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IPassElement::discard() {
|
|
|
|
|
;
|
|
|
|
|
}
|
2025-01-01 21:35:42 +01:00
|
|
|
|
|
|
|
|
bool IPassElement::undiscardable() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|