Revert "Move some trait bounds to definition of AsGlowRenderer"
This reverts commit c860fcddad.
Accidentally pushed to wrong branch.
If only branch protection has a way to prompt for overriding rule on
push...
This commit is contained in:
parent
87a7d20b33
commit
0d6c83db31
9 changed files with 93 additions and 86 deletions
|
|
@ -364,7 +364,7 @@ impl CosmicWindow {
|
|||
alpha: f32,
|
||||
) -> Option<C>
|
||||
where
|
||||
R: AsGlowRenderer,
|
||||
R: Renderer + ImportAll + ImportMem + AsGlowRenderer,
|
||||
R::TextureId: Send + Clone + 'static,
|
||||
C: From<CosmicWindowRenderElement<R>>,
|
||||
{
|
||||
|
|
@ -444,7 +444,7 @@ impl CosmicWindow {
|
|||
scanout_override: Option<bool>,
|
||||
) -> Vec<C>
|
||||
where
|
||||
R: AsGlowRenderer,
|
||||
R: Renderer + ImportAll + ImportMem + AsGlowRenderer,
|
||||
R::TextureId: Send + Clone + 'static,
|
||||
C: From<CosmicWindowRenderElement<R>>,
|
||||
{
|
||||
|
|
@ -1350,7 +1350,7 @@ where
|
|||
|
||||
impl<R> RenderElement<R> for CosmicWindowRenderElement<R>
|
||||
where
|
||||
R: AsGlowRenderer,
|
||||
R: Renderer + AsGlowRenderer + ImportAll + ImportMem,
|
||||
R::TextureId: 'static,
|
||||
R::Error: FromGlesError,
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue