mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
fmt! -> format!
This commit is contained in:
parent
e7e7eab905
commit
e2b7885b73
54 changed files with 274 additions and 274 deletions
|
@ -188,7 +188,7 @@ impl<C: RenderListener + Send,T:Send+Freeze> RenderTask<C,T> {
|
|||
if self.epoch == epoch {
|
||||
self.render(tiles, scale);
|
||||
} else {
|
||||
debug!("renderer epoch mismatch: %? != %?", self.epoch, epoch);
|
||||
debug!("renderer epoch mismatch: {:?} != {:?}", self.epoch, epoch);
|
||||
}
|
||||
}
|
||||
UnusedBufferMsg(unused_buffers) => {
|
||||
|
@ -329,7 +329,7 @@ impl<C: RenderListener + Send,T:Send+Freeze> RenderTask<C,T> {
|
|||
|
||||
do draw_target.snapshot().get_data_surface().with_data |data| {
|
||||
buffer.native_surface.upload(&self.native_graphics_context, data);
|
||||
debug!("RENDERER uploading to native surface %d",
|
||||
debug!("RENDERER uploading to native surface {:d}",
|
||||
buffer.native_surface.get_id() as int);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue