@@ -8,15 +8,18 @@ extern crate webrender;
8
8
extern crate winit;
9
9
10
10
use direct_composition:: DirectComposition ;
11
+ use std:: sync:: mpsc;
11
12
use webrender:: api;
12
13
use winit:: os:: windows:: WindowExt ;
13
14
14
15
fn main ( ) {
15
16
let mut events_loop = winit:: EventsLoop :: new ( ) ;
16
- let notifier = Box :: new ( Notifier { events_proxy : events_loop. create_proxy ( ) } ) ;
17
+
18
+ let ( tx, rx) = mpsc:: channel ( ) ;
19
+ let notifier = Box :: new ( Notifier { events_proxy : events_loop. create_proxy ( ) , tx } ) ;
17
20
18
21
let window = winit:: WindowBuilder :: new ( )
19
- . with_title ( "Hello, world! " )
22
+ . with_title ( "WebRender + ANGLE + DirectComposition " )
20
23
. with_dimensions ( 1024 , 768 )
21
24
. build ( & events_loop)
22
25
. unwrap ( ) ;
@@ -31,12 +34,8 @@ fn main() {
31
34
Rectangle :: new ( & composition, & notifier, factor, size ( 300 , 200 ) , 0. , 0.2 , 0.4 , 1. ) ,
32
35
Rectangle :: new ( & composition, & notifier, factor, size ( 400 , 300 ) , 0. , 0.5 , 0. , 0.5 ) ,
33
36
] ;
34
- rects[ 0 ] . render ( factor) ;
35
- rects[ 1 ] . render ( factor) ;
36
-
37
- // FIXME: what shows up on screen for each visual seems to be one frame late?
38
- rects[ 0 ] . render ( factor) ;
39
- rects[ 1 ] . render ( factor) ;
37
+ rects[ 0 ] . render ( factor, & rx) ;
38
+ rects[ 1 ] . render ( factor, & rx) ;
40
39
41
40
rects[ 0 ] . visual . set_offset_x ( 100. ) ;
42
41
rects[ 0 ] . visual . set_offset_y ( 50. ) ;
@@ -71,7 +70,7 @@ fn main() {
71
70
let rect = & mut rects[ clicks % 2 ] ;
72
71
rect. color . g += 0.1 ;
73
72
rect. color . g %= 1. ;
74
- rect. render ( factor)
73
+ rect. render ( factor, & rx )
75
74
}
76
75
_ => { }
77
76
}
@@ -123,7 +122,7 @@ impl Rectangle {
123
122
}
124
123
}
125
124
126
- fn render ( & mut self , device_pixel_ratio : f32 ) {
125
+ fn render ( & mut self , device_pixel_ratio : f32 , rx : & mpsc :: Receiver < ( ) > ) {
127
126
self . visual . make_current ( ) ;
128
127
129
128
let pipeline_id = api:: PipelineId ( 0 , 0 ) ;
@@ -152,6 +151,7 @@ impl Rectangle {
152
151
transaction. set_root_pipeline ( pipeline_id) ;
153
152
transaction. generate_frame ( ) ;
154
153
self . api . send_transaction ( self . document_id , transaction) ;
154
+ rx. recv ( ) . unwrap ( ) ;
155
155
let renderer = self . renderer . as_mut ( ) . unwrap ( ) ;
156
156
renderer. update ( ) ;
157
157
renderer. render ( self . size ) . unwrap ( ) ;
@@ -169,6 +169,7 @@ impl Drop for Rectangle {
169
169
#[ derive( Clone ) ]
170
170
struct Notifier {
171
171
events_proxy : winit:: EventsLoopProxy ,
172
+ tx : mpsc:: Sender < ( ) > ,
172
173
}
173
174
174
175
impl api:: RenderNotifier for Notifier {
@@ -177,6 +178,7 @@ impl api::RenderNotifier for Notifier {
177
178
}
178
179
179
180
fn wake_up ( & self ) {
181
+ self . tx . send ( ( ) ) . unwrap ( ) ;
180
182
let _ = self . events_proxy . wakeup ( ) ;
181
183
}
182
184
0 commit comments