summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/webgl/webqt.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/platforms/webgl/webqt.jsx')
-rw-r--r--src/plugins/platforms/webgl/webqt.jsx18
1 files changed, 4 insertions, 14 deletions
diff --git a/src/plugins/platforms/webgl/webqt.jsx b/src/plugins/platforms/webgl/webqt.jsx
index e3a2f29..c886733 100644
--- a/src/plugins/platforms/webgl/webqt.jsx
+++ b/src/plugins/platforms/webgl/webqt.jsx
@@ -90,16 +90,6 @@ window.onload = function () {
sendObject({ "type": "gl_response", "id": id, "value": value });
};
- var sendResize = function (width, height, physicalWidth, physicalHeight) {
- if (DEBUG)
- console.log("Resizing canvas to " + width + " x " + height);
- var object = { "type": "canvas_resize",
- "width": width, "height": height,
- "physicalWidth" : physicalWidth, "physicalHeight" : physicalHeight
- };
- sendObject(socket);
- };
-
var createLoadingCanvas = function(name, x, y, width, height) {
var canvas = document.createElement("canvas");
canvas.id = "loading_" + name;
@@ -1089,13 +1079,13 @@ window.onload = function () {
var width = size.width;
var height = size.height;
var physicalSize = physicalSizeRatio();
-
- var object = { "type" : "canvas_resize",
+ if (DEBUG)
+ console.log("Resizing canvas to " + width + " x " + height);
+ sendObject({ "type" : "canvas_resize",
"width" : width, "height" : height,
"physicalWidth" : width / physicalSize.width,
"physicalHeight" : height / physicalSize.height
- };
- sendObject(object);
+ });
};
window.addEventListener("resize",(function(){
if(doCheck){