bfg-common 1.6.35 → 1.6.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -80,23 +80,24 @@ wdi.Agent = $.spcExtend(wdi.EventObject.prototype, {
|
|
|
80
80
|
|
|
81
81
|
//adapt resolution, TODO: this needs to be refractored
|
|
82
82
|
var packetData = {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
83
|
+
type: wdi.AgentMessageTypes.VD_AGENT_MONITORS_CONFIG,
|
|
84
|
+
opaque: 0,
|
|
85
|
+
data: new wdi.VDAgentMonitorsConfig({
|
|
86
|
+
num_of_monitors: 1,
|
|
87
|
+
flags: 0,
|
|
88
|
+
data: new wdi.VDAgentMonConfig({
|
|
89
|
+
width: width,
|
|
90
|
+
height: height,
|
|
91
|
+
// Custom code
|
|
92
|
+
// depth: 64,
|
|
93
|
+
depth: 24, // SC-2122
|
|
94
|
+
// depth: 32,
|
|
95
|
+
// Custom code end
|
|
96
|
+
x: 0,
|
|
97
|
+
y: 0,
|
|
98
|
+
}),
|
|
99
|
+
}),
|
|
100
|
+
}
|
|
100
101
|
this.sendAgentPacket(packetData);
|
|
101
102
|
},
|
|
102
103
|
|