am 7e6064ad: Merge "fix [3008290] passion GB surface does not send surfaceChanged notification after size change." into gingerbread
Merge commit '7e6064ad7ccd4a0c59d89ccdf16e969b0c3296d3' into gingerbread-plus-aosp * commit '7e6064ad7ccd4a0c59d89ccdf16e969b0c3296d3': fix [3008290] passion GB surface does not send surfaceChanged notification after size change.
This commit is contained in:
@@ -288,9 +288,10 @@ public class SurfaceView extends View {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
|
||||
super.onSizeChanged(w, h, oldw, oldh);
|
||||
protected boolean setFrame(int left, int top, int right, int bottom) {
|
||||
boolean result = super.setFrame(left, top, right, bottom);
|
||||
updateWindow(false, false);
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user