12345678910111213141516171819202122232425262728293031 |
- #include "MatrixKernel.h"
- namespace android {
- namespace vintf {
- bool MatrixKernel::operator==(const MatrixKernel &other) const {
- if (mMinLts != other.mMinLts)
- return false;
- if (mConfigs != other.mConfigs)
- return false;
- return true;
- }
- }
- }
|