summaryrefslogtreecommitdiff
path: root/examples/video-flip2.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/video-flip2.js')
-rw-r--r--examples/video-flip2.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/video-flip2.js b/examples/video-flip2.js
index e0226a3..79c17a7 100644
--- a/examples/video-flip2.js
+++ b/examples/video-flip2.js
@@ -238,11 +238,11 @@ let positionActors = function() {
for (let i = 0; i < ROWS; i++) {
for (let j = 0; j < COLUMNS; j++) {
- let input = new Clutter.ActorBox({ x1: j / COLUMNS,
- x2: (j + 1) / COLUMNS,
- y1: i / ROWS,
- y2: (i + 1) / ROWS,
- })
+ let input = new ClutterGst.Box({ x1: j / COLUMNS,
+ x2: (j + 1) / COLUMNS,
+ y1: i / ROWS,
+ y2: (i + 1) / ROWS,
+ })
let actor =
new ClutterGst.Crop({ cull_backface: true,
pivot_point: new Clutter.Point({ x: 0.5,