Merge change I4c29c948 into eclair
* changes: fix [2269022] The raw picture displayed post shutter seems to have low-resolution
This commit is contained in:
@ -118,7 +118,12 @@ uint32_t LayerBuffer::doTransaction(uint32_t flags)
|
|||||||
sp<Source> source(getSource());
|
sp<Source> source(getSource());
|
||||||
if (source != 0)
|
if (source != 0)
|
||||||
source->onTransaction(flags);
|
source->onTransaction(flags);
|
||||||
return LayerBase::doTransaction(flags);
|
uint32_t res = LayerBase::doTransaction(flags);
|
||||||
|
// we always want filtering for these surfaces
|
||||||
|
if (!(mFlags & DisplayHardware::SLOW_CONFIG)) {
|
||||||
|
mUseLinearFiltering = true;
|
||||||
|
}
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
void LayerBuffer::unlockPageFlip(const Transform& planeTransform,
|
void LayerBuffer::unlockPageFlip(const Transform& planeTransform,
|
||||||
|
Reference in New Issue
Block a user