Rename get_information to fetch_information
This commit is contained in:
parent
984d1f375e
commit
005e516b5e
6 changed files with 8 additions and 8 deletions
|
|
@ -41,7 +41,7 @@ pub trait Compositor: Sized {
|
|||
);
|
||||
|
||||
/// Returns [`GraphicsInformation`] used by this [`Compositor`].
|
||||
fn get_information(&self) -> Information;
|
||||
fn fetch_information(&self) -> Information;
|
||||
|
||||
/// Presents the [`Renderer`] primitives to the next frame of the given [`Surface`].
|
||||
///
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ pub trait GLCompositor: Sized {
|
|||
fn resize_viewport(&mut self, physical_size: Size<u32>);
|
||||
|
||||
/// Returns [`GraphicsInformation`] used by this [`Compositor`].
|
||||
fn get_information(&self) -> Information;
|
||||
fn fetch_information(&self) -> Information;
|
||||
|
||||
/// Presents the primitives of the [`Renderer`] to the next frame of the
|
||||
/// [`GLCompositor`].
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue