Bug 809199 - Update setViewportSize to take width/height instead of a FloatSize. r=Cwiiis

This commit is contained in:
Kartikaya Gupta
2012-11-07 11:47:08 -05:00
parent d994c7a00f
commit 4b59521ed5
4 changed files with 9 additions and 10 deletions

View File

@@ -127,7 +127,7 @@ public class GLController {
// done on the main UI thread, not the GL renderer thread
mView.post(new Runnable() {
public void run() {
mView.setViewportSize(new IntSize(mWidth, mHeight));
mView.setViewportSize(mWidth, mHeight);
}
});
}