From 037eff0f4cb7ff4f3746d7a4f915964d35bae9e2 Mon Sep 17 00:00:00 2001 From: Tetsuharu OHZEKI Date: Mon, 8 Dec 2014 15:32:33 +0900 Subject: [PATCH] Replace 'render' to 'paint' in compositor_msg.rs --- components/msg/compositor_msg.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/msg/compositor_msg.rs b/components/msg/compositor_msg.rs index 989d4d56968..4635e2667d4 100644 --- a/components/msg/compositor_msg.rs +++ b/components/msg/compositor_msg.rs @@ -81,13 +81,13 @@ pub struct LayerMetadata { pub scroll_policy: ScrollPolicy, } -/// The interface used by the renderer to acquire draw targets for each render frame and +/// The interface used by the painter to acquire draw targets for each paint frame and /// submit them to be drawn to the display. pub trait PaintListener for Sized? { fn get_graphics_metadata(&mut self) -> Option; /// Informs the compositor of the layers for the given pipeline. The compositor responds by - /// creating and/or destroying render layers as necessary. + /// creating and/or destroying paint layers as necessary. fn initialize_layers_for_pipeline(&mut self, pipeline_id: PipelineId, metadata: Vec,