anvil: factor the drawing code
This commit is contained in:
parent
011d067ce5
commit
a137a7fa8f
|
@ -6,10 +6,16 @@ use smithay::backend::graphics::egl::EGLGraphicsBackend;
|
||||||
use smithay::backend::graphics::egl::error::Result as EGLResult;
|
use smithay::backend::graphics::egl::error::Result as EGLResult;
|
||||||
use smithay::backend::graphics::egl::wayland::{EGLDisplay, EGLImages, EGLWaylandExtensions, Format};
|
use smithay::backend::graphics::egl::wayland::{EGLDisplay, EGLImages, EGLWaylandExtensions, Format};
|
||||||
use smithay::backend::graphics::glium::GliumGraphicsBackend;
|
use smithay::backend::graphics::glium::GliumGraphicsBackend;
|
||||||
|
use smithay::wayland::compositor::{SubsurfaceRole, TraversalAction};
|
||||||
|
use smithay::wayland::compositor::roles::Role;
|
||||||
use smithay::wayland_server::Display;
|
use smithay::wayland_server::Display;
|
||||||
|
|
||||||
use std::cell::Ref;
|
use std::cell::Ref;
|
||||||
|
|
||||||
|
use slog::Logger;
|
||||||
|
|
||||||
|
use shell::{Buffer, MyCompositorToken, MyWindowMap};
|
||||||
|
|
||||||
#[derive(Copy, Clone)]
|
#[derive(Copy, Clone)]
|
||||||
struct Vertex {
|
struct Vertex {
|
||||||
position: [f32; 2],
|
position: [f32; 2],
|
||||||
|
@ -190,3 +196,95 @@ impl<G: EGLWaylandExtensions + EGLGraphicsBackend + 'static> EGLWaylandExtension
|
||||||
self.display.bind_wl_display(display)
|
self.display.bind_wl_display(display)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<F: EGLGraphicsBackend + 'static> GliumDrawer<F> {
|
||||||
|
pub fn draw_windows(&self, window_map: &MyWindowMap, compositor_token: MyCompositorToken, log: &Logger) {
|
||||||
|
let mut frame = self.draw();
|
||||||
|
frame.clear(None, Some((0.8, 0.8, 0.9, 1.0)), false, Some(1.0), None);
|
||||||
|
// redraw the frame, in a simple but inneficient way
|
||||||
|
{
|
||||||
|
let screen_dimensions = self.borrow().get_framebuffer_dimensions();
|
||||||
|
window_map.with_windows_from_bottom_to_top(|toplevel_surface, initial_place| {
|
||||||
|
if let Some(wl_surface) = toplevel_surface.get_surface() {
|
||||||
|
// this surface is a root of a subsurface tree that needs to be drawn
|
||||||
|
compositor_token
|
||||||
|
.with_surface_tree_upward(
|
||||||
|
wl_surface,
|
||||||
|
initial_place,
|
||||||
|
|_surface, attributes, role, &(mut x, mut y)| {
|
||||||
|
// there is actually something to draw !
|
||||||
|
if attributes.user_data.texture.is_none() {
|
||||||
|
let mut remove = false;
|
||||||
|
match attributes.user_data.buffer {
|
||||||
|
Some(Buffer::Egl { ref images }) => {
|
||||||
|
match images.format {
|
||||||
|
Format::RGB | Format::RGBA => {
|
||||||
|
attributes.user_data.texture =
|
||||||
|
self.texture_from_egl(&images);
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
// we don't handle the more complex formats here.
|
||||||
|
attributes.user_data.texture = None;
|
||||||
|
remove = true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Some(Buffer::Shm { ref data, ref size }) => {
|
||||||
|
attributes.user_data.texture =
|
||||||
|
Some(self.texture_from_mem(data, *size));
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
if remove {
|
||||||
|
attributes.user_data.buffer = None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(ref texture) = attributes.user_data.texture {
|
||||||
|
if let Ok(subdata) = Role::<SubsurfaceRole>::data(role) {
|
||||||
|
x += subdata.location.0;
|
||||||
|
y += subdata.location.1;
|
||||||
|
}
|
||||||
|
self.render_texture(
|
||||||
|
&mut frame,
|
||||||
|
texture,
|
||||||
|
match *attributes.user_data.buffer.as_ref().unwrap() {
|
||||||
|
Buffer::Egl { ref images } => images.y_inverted,
|
||||||
|
Buffer::Shm { .. } => false,
|
||||||
|
},
|
||||||
|
match *attributes.user_data.buffer.as_ref().unwrap() {
|
||||||
|
Buffer::Egl { ref images } => (images.width, images.height),
|
||||||
|
Buffer::Shm { ref size, .. } => *size,
|
||||||
|
},
|
||||||
|
(x, y),
|
||||||
|
screen_dimensions,
|
||||||
|
::glium::Blend {
|
||||||
|
color: ::glium::BlendingFunction::Addition {
|
||||||
|
source: ::glium::LinearBlendingFactor::One,
|
||||||
|
destination:
|
||||||
|
::glium::LinearBlendingFactor::OneMinusSourceAlpha,
|
||||||
|
},
|
||||||
|
alpha: ::glium::BlendingFunction::Addition {
|
||||||
|
source: ::glium::LinearBlendingFactor::One,
|
||||||
|
destination:
|
||||||
|
::glium::LinearBlendingFactor::OneMinusSourceAlpha,
|
||||||
|
},
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
);
|
||||||
|
TraversalAction::DoChildren((x, y))
|
||||||
|
} else {
|
||||||
|
// we are not display, so our children are neither
|
||||||
|
TraversalAction::SkipChildren
|
||||||
|
}
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if let Err(err) = frame.finish() {
|
||||||
|
error!(log, "Error during rendering: {:?}", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -12,18 +12,16 @@ use smithay::drm::control::crtc;
|
||||||
use smithay::drm::control::encoder::Info as EncoderInfo;
|
use smithay::drm::control::encoder::Info as EncoderInfo;
|
||||||
use smithay::drm::result::Error as DrmError;
|
use smithay::drm::result::Error as DrmError;
|
||||||
use smithay::backend::drm::{drm_device_bind, DrmBackend, DrmDevice, DrmHandler};
|
use smithay::backend::drm::{drm_device_bind, DrmBackend, DrmDevice, DrmHandler};
|
||||||
use smithay::backend::graphics::egl::EGLGraphicsBackend;
|
use smithay::backend::graphics::egl::wayland::EGLWaylandExtensions;
|
||||||
use smithay::backend::graphics::egl::wayland::{EGLWaylandExtensions, Format};
|
use smithay::wayland::compositor::CompositorToken;
|
||||||
use smithay::wayland::compositor::{CompositorToken, SubsurfaceRole, TraversalAction};
|
|
||||||
use smithay::wayland::compositor::roles::Role;
|
|
||||||
use smithay::wayland::shm::init_shm_global;
|
use smithay::wayland::shm::init_shm_global;
|
||||||
use smithay::wayland_server::{Display, EventLoop};
|
use smithay::wayland_server::{Display, EventLoop};
|
||||||
|
|
||||||
use glium::{Blend, Surface};
|
use glium::Surface;
|
||||||
use slog::Logger;
|
use slog::Logger;
|
||||||
|
|
||||||
use glium_drawer::GliumDrawer;
|
use glium_drawer::GliumDrawer;
|
||||||
use shell::{init_shell, Buffer, MyWindowMap, Roles, SurfaceData};
|
use shell::{init_shell, MyWindowMap, Roles, SurfaceData};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Card(File);
|
pub struct Card(File);
|
||||||
|
@ -153,82 +151,11 @@ impl DrmHandler<Card> for DrmHandlerImpl {
|
||||||
_frame: u32,
|
_frame: u32,
|
||||||
_duration: Duration,
|
_duration: Duration,
|
||||||
) {
|
) {
|
||||||
let mut frame = self.drawer.draw();
|
self.drawer.draw_windows(
|
||||||
frame.clear_color(0.8, 0.8, 0.9, 1.0);
|
&*self.window_map.borrow(),
|
||||||
// redraw the frame, in a simple but inneficient way
|
self.compositor_token,
|
||||||
{
|
&self.logger,
|
||||||
let screen_dimensions = self.drawer.borrow().get_framebuffer_dimensions();
|
);
|
||||||
self.window_map
|
|
||||||
.borrow()
|
|
||||||
.with_windows_from_bottom_to_top(|toplevel_surface, initial_place| {
|
|
||||||
if let Some(wl_surface) = toplevel_surface.get_surface() {
|
|
||||||
// this surface is a root of a subsurface tree that needs to be drawn
|
|
||||||
self.compositor_token
|
|
||||||
.with_surface_tree_upward(
|
|
||||||
wl_surface,
|
|
||||||
initial_place,
|
|
||||||
|_surface, attributes, role, &(mut x, mut y)| {
|
|
||||||
// there is actually something to draw !
|
|
||||||
if attributes.user_data.texture.is_none() {
|
|
||||||
let mut remove = false;
|
|
||||||
match attributes.user_data.buffer {
|
|
||||||
Some(Buffer::Egl { ref images }) => {
|
|
||||||
match images.format {
|
|
||||||
Format::RGB | Format::RGBA => {
|
|
||||||
attributes.user_data.texture =
|
|
||||||
self.drawer.texture_from_egl(&images);
|
|
||||||
}
|
|
||||||
_ => {
|
|
||||||
// we don't handle the more complex formats here.
|
|
||||||
attributes.user_data.texture = None;
|
|
||||||
remove = true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Some(Buffer::Shm { ref data, ref size }) => {
|
|
||||||
attributes.user_data.texture =
|
|
||||||
Some(self.drawer.texture_from_mem(data, *size));
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
if remove {
|
|
||||||
attributes.user_data.buffer = None;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(ref texture) = attributes.user_data.texture {
|
|
||||||
if let Ok(subdata) = Role::<SubsurfaceRole>::data(role) {
|
|
||||||
x += subdata.location.0;
|
|
||||||
y += subdata.location.1;
|
|
||||||
}
|
|
||||||
info!(self.logger, "Render window");
|
|
||||||
self.drawer.render_texture(
|
|
||||||
&mut frame,
|
|
||||||
texture,
|
|
||||||
match *attributes.user_data.buffer.as_ref().unwrap() {
|
|
||||||
Buffer::Egl { ref images } => images.y_inverted,
|
|
||||||
Buffer::Shm { .. } => false,
|
|
||||||
},
|
|
||||||
match *attributes.user_data.buffer.as_ref().unwrap() {
|
|
||||||
Buffer::Egl { ref images } => (images.width, images.height),
|
|
||||||
Buffer::Shm { ref size, .. } => *size,
|
|
||||||
},
|
|
||||||
(x, y),
|
|
||||||
screen_dimensions,
|
|
||||||
Blend::alpha_blending(),
|
|
||||||
);
|
|
||||||
TraversalAction::DoChildren((x, y))
|
|
||||||
} else {
|
|
||||||
// we are not display, so our children are neither
|
|
||||||
TraversalAction::SkipChildren
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
frame.finish().unwrap();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn error(&mut self, _device: &mut DrmDevice<Card>, error: DrmError) {
|
fn error(&mut self, _device: &mut DrmDevice<Card>, error: DrmError) {
|
||||||
|
|
|
@ -24,6 +24,8 @@ define_roles!(Roles => [ XdgSurface, XdgSurfaceRole ] [ ShellSurface, ShellSurfa
|
||||||
pub type MyWindowMap =
|
pub type MyWindowMap =
|
||||||
WindowMap<SurfaceData, Roles, (), (), fn(&SurfaceAttributes<SurfaceData>) -> Option<(i32, i32)>>;
|
WindowMap<SurfaceData, Roles, (), (), fn(&SurfaceAttributes<SurfaceData>) -> Option<(i32, i32)>>;
|
||||||
|
|
||||||
|
pub type MyCompositorToken = CompositorToken<SurfaceData, Roles>;
|
||||||
|
|
||||||
pub fn init_shell(
|
pub fn init_shell(
|
||||||
display: &mut Display,
|
display: &mut Display,
|
||||||
looptoken: LoopToken,
|
looptoken: LoopToken,
|
||||||
|
|
|
@ -7,7 +7,7 @@ use std::sync::Arc;
|
||||||
use std::sync::atomic::{AtomicBool, Ordering};
|
use std::sync::atomic::{AtomicBool, Ordering};
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use glium::{Blend, Surface};
|
use glium::Surface;
|
||||||
|
|
||||||
use smithay::image::{ImageBuffer, Rgba};
|
use smithay::image::{ImageBuffer, Rgba};
|
||||||
|
|
||||||
|
@ -20,15 +20,13 @@ use smithay::drm::control::encoder::Info as EncoderInfo;
|
||||||
use smithay::drm::result::Error as DrmError;
|
use smithay::drm::result::Error as DrmError;
|
||||||
use smithay::backend::drm::{DevPath, DrmBackend, DrmDevice, DrmHandler};
|
use smithay::backend::drm::{DevPath, DrmBackend, DrmDevice, DrmHandler};
|
||||||
use smithay::backend::graphics::GraphicsBackend;
|
use smithay::backend::graphics::GraphicsBackend;
|
||||||
use smithay::backend::graphics::egl::EGLGraphicsBackend;
|
use smithay::backend::graphics::egl::wayland::{EGLDisplay, EGLWaylandExtensions};
|
||||||
use smithay::backend::graphics::egl::wayland::{EGLDisplay, EGLWaylandExtensions, Format};
|
|
||||||
use smithay::backend::input::InputBackend;
|
use smithay::backend::input::InputBackend;
|
||||||
use smithay::backend::libinput::{libinput_bind, LibinputInputBackend, LibinputSessionInterface};
|
use smithay::backend::libinput::{libinput_bind, LibinputInputBackend, LibinputSessionInterface};
|
||||||
use smithay::backend::session::{Session, SessionNotifier};
|
use smithay::backend::session::{Session, SessionNotifier};
|
||||||
use smithay::backend::session::auto::{auto_session_bind, AutoSession};
|
use smithay::backend::session::auto::{auto_session_bind, AutoSession};
|
||||||
use smithay::backend::udev::{primary_gpu, udev_backend_bind, SessionFdDrmDevice, UdevBackend, UdevHandler};
|
use smithay::backend::udev::{primary_gpu, udev_backend_bind, SessionFdDrmDevice, UdevBackend, UdevHandler};
|
||||||
use smithay::wayland::compositor::{CompositorToken, SubsurfaceRole, TraversalAction};
|
use smithay::wayland::compositor::CompositorToken;
|
||||||
use smithay::wayland::compositor::roles::Role;
|
|
||||||
use smithay::wayland::output::{Mode, Output, PhysicalProperties};
|
use smithay::wayland::output::{Mode, Output, PhysicalProperties};
|
||||||
use smithay::wayland::seat::Seat;
|
use smithay::wayland::seat::Seat;
|
||||||
use smithay::wayland::shm::init_shm_global;
|
use smithay::wayland::shm::init_shm_global;
|
||||||
|
@ -38,7 +36,7 @@ use smithay::wayland_server::protocol::wl_output;
|
||||||
use smithay::input::Libinput;
|
use smithay::input::Libinput;
|
||||||
|
|
||||||
use glium_drawer::GliumDrawer;
|
use glium_drawer::GliumDrawer;
|
||||||
use shell::{init_shell, Buffer, MyWindowMap, Roles, SurfaceData};
|
use shell::{init_shell, MyWindowMap, Roles, SurfaceData};
|
||||||
use input_handler::AnvilInputHandler;
|
use input_handler::AnvilInputHandler;
|
||||||
|
|
||||||
pub fn run_udev(mut display: Display, mut event_loop: EventLoop, log: Logger) -> Result<(), ()> {
|
pub fn run_udev(mut display: Display, mut event_loop: EventLoop, log: Logger) -> Result<(), ()> {
|
||||||
|
@ -337,86 +335,12 @@ impl DrmHandler<SessionFdDrmDevice> for DrmHandlerImpl {
|
||||||
.borrow()
|
.borrow()
|
||||||
.set_cursor_position(x.trunc().abs() as u32, y.trunc().abs() as u32);
|
.set_cursor_position(x.trunc().abs() as u32, y.trunc().abs() as u32);
|
||||||
}
|
}
|
||||||
let mut frame = drawer.draw();
|
|
||||||
frame.clear_color(0.8, 0.8, 0.9, 1.0);
|
|
||||||
// redraw the frame, in a simple but inneficient way
|
|
||||||
{
|
|
||||||
let screen_dimensions = drawer.borrow().get_framebuffer_dimensions();
|
|
||||||
self.window_map.borrow().with_windows_from_bottom_to_top(
|
|
||||||
|toplevel_surface, initial_place| {
|
|
||||||
if let Some(wl_surface) = toplevel_surface.get_surface() {
|
|
||||||
// this surface is a root of a subsurface tree that needs to be drawn
|
|
||||||
self.compositor_token
|
|
||||||
.with_surface_tree_upward(
|
|
||||||
wl_surface,
|
|
||||||
initial_place,
|
|
||||||
|_surface, attributes, role, &(mut x, mut y)| {
|
|
||||||
// there is actually something to draw !
|
|
||||||
if attributes.user_data.texture.is_none() {
|
|
||||||
let mut remove = false;
|
|
||||||
match attributes.user_data.buffer {
|
|
||||||
Some(Buffer::Egl { ref images }) => {
|
|
||||||
match images.format {
|
|
||||||
Format::RGB | Format::RGBA => {
|
|
||||||
attributes.user_data.texture =
|
|
||||||
drawer.texture_from_egl(&images);
|
|
||||||
}
|
|
||||||
_ => {
|
|
||||||
// we don't handle the more complex formats here.
|
|
||||||
attributes.user_data.texture = None;
|
|
||||||
remove = true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Some(Buffer::Shm { ref data, ref size }) => {
|
|
||||||
attributes.user_data.texture =
|
|
||||||
Some(drawer.texture_from_mem(data, *size));
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
if remove {
|
|
||||||
attributes.user_data.buffer = None;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(ref texture) = attributes.user_data.texture {
|
drawer.draw_windows(
|
||||||
if let Ok(subdata) = Role::<SubsurfaceRole>::data(role) {
|
&*self.window_map.borrow(),
|
||||||
x += subdata.location.0;
|
self.compositor_token,
|
||||||
y += subdata.location.1;
|
&self.logger,
|
||||||
}
|
);
|
||||||
info!(self.logger, "Render window");
|
|
||||||
drawer.render_texture(
|
|
||||||
&mut frame,
|
|
||||||
texture,
|
|
||||||
match *attributes.user_data.buffer.as_ref().unwrap() {
|
|
||||||
Buffer::Egl { ref images } => images.y_inverted,
|
|
||||||
Buffer::Shm { .. } => false,
|
|
||||||
},
|
|
||||||
match *attributes.user_data.buffer.as_ref().unwrap() {
|
|
||||||
Buffer::Egl { ref images } => {
|
|
||||||
(images.width, images.height)
|
|
||||||
}
|
|
||||||
Buffer::Shm { ref size, .. } => *size,
|
|
||||||
},
|
|
||||||
(x, y),
|
|
||||||
screen_dimensions,
|
|
||||||
Blend::alpha_blending(),
|
|
||||||
);
|
|
||||||
TraversalAction::DoChildren((x, y))
|
|
||||||
} else {
|
|
||||||
// we are not display, so our children are neither
|
|
||||||
TraversalAction::SkipChildren
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if let Err(err) = frame.finish() {
|
|
||||||
error!(self.logger, "Error during rendering: {:?}", err);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,22 +5,18 @@ use std::sync::atomic::AtomicBool;
|
||||||
|
|
||||||
use smithay::wayland::shm::init_shm_global;
|
use smithay::wayland::shm::init_shm_global;
|
||||||
use smithay::wayland::seat::Seat;
|
use smithay::wayland::seat::Seat;
|
||||||
use smithay::wayland::compositor::{SubsurfaceRole, TraversalAction};
|
|
||||||
use smithay::wayland::compositor::roles::Role;
|
|
||||||
use smithay::wayland::output::{Mode, Output, PhysicalProperties};
|
use smithay::wayland::output::{Mode, Output, PhysicalProperties};
|
||||||
use smithay::backend::input::InputBackend;
|
use smithay::backend::input::InputBackend;
|
||||||
use smithay::backend::winit;
|
use smithay::backend::winit;
|
||||||
use smithay::backend::graphics::egl::EGLGraphicsBackend;
|
use smithay::backend::graphics::egl::EGLGraphicsBackend;
|
||||||
use smithay::backend::graphics::egl::wayland::{EGLWaylandExtensions, Format};
|
use smithay::backend::graphics::egl::wayland::EGLWaylandExtensions;
|
||||||
use smithay::wayland_server::{Display, EventLoop};
|
use smithay::wayland_server::{Display, EventLoop};
|
||||||
use smithay::wayland_server::protocol::wl_output;
|
use smithay::wayland_server::protocol::wl_output;
|
||||||
|
|
||||||
use glium::Surface;
|
|
||||||
|
|
||||||
use slog::Logger;
|
use slog::Logger;
|
||||||
|
|
||||||
use glium_drawer::GliumDrawer;
|
use glium_drawer::GliumDrawer;
|
||||||
use shell::{init_shell, Buffer};
|
use shell::init_shell;
|
||||||
use input_handler::AnvilInputHandler;
|
use input_handler::AnvilInputHandler;
|
||||||
|
|
||||||
pub fn run_winit(display: &mut Display, event_loop: &mut EventLoop, log: Logger) -> Result<(), ()> {
|
pub fn run_winit(display: &mut Display, event_loop: &mut EventLoop, log: Logger) -> Result<(), ()> {
|
||||||
|
@ -103,93 +99,7 @@ pub fn run_winit(display: &mut Display, event_loop: &mut EventLoop, log: Logger)
|
||||||
loop {
|
loop {
|
||||||
input.dispatch_new_events().unwrap();
|
input.dispatch_new_events().unwrap();
|
||||||
|
|
||||||
let mut frame = drawer.draw();
|
drawer.draw_windows(&*window_map.borrow(), compositor_token, &log);
|
||||||
frame.clear(None, Some((0.8, 0.8, 0.9, 1.0)), false, Some(1.0), None);
|
|
||||||
// redraw the frame, in a simple but inneficient way
|
|
||||||
{
|
|
||||||
let screen_dimensions = drawer.borrow().get_framebuffer_dimensions();
|
|
||||||
window_map
|
|
||||||
.borrow()
|
|
||||||
.with_windows_from_bottom_to_top(|toplevel_surface, initial_place| {
|
|
||||||
if let Some(wl_surface) = toplevel_surface.get_surface() {
|
|
||||||
// this surface is a root of a subsurface tree that needs to be drawn
|
|
||||||
compositor_token
|
|
||||||
.with_surface_tree_upward(
|
|
||||||
wl_surface,
|
|
||||||
initial_place,
|
|
||||||
|_surface, attributes, role, &(mut x, mut y)| {
|
|
||||||
// there is actually something to draw !
|
|
||||||
if attributes.user_data.texture.is_none() {
|
|
||||||
let mut remove = false;
|
|
||||||
match attributes.user_data.buffer {
|
|
||||||
Some(Buffer::Egl { ref images }) => {
|
|
||||||
match images.format {
|
|
||||||
Format::RGB | Format::RGBA => {
|
|
||||||
attributes.user_data.texture =
|
|
||||||
drawer.texture_from_egl(&images);
|
|
||||||
}
|
|
||||||
_ => {
|
|
||||||
// we don't handle the more complex formats here.
|
|
||||||
attributes.user_data.texture = None;
|
|
||||||
remove = true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Some(Buffer::Shm { ref data, ref size }) => {
|
|
||||||
attributes.user_data.texture =
|
|
||||||
Some(drawer.texture_from_mem(data, *size));
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
if remove {
|
|
||||||
attributes.user_data.buffer = None;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(ref texture) = attributes.user_data.texture {
|
|
||||||
if let Ok(subdata) = Role::<SubsurfaceRole>::data(role) {
|
|
||||||
x += subdata.location.0;
|
|
||||||
y += subdata.location.1;
|
|
||||||
}
|
|
||||||
drawer.render_texture(
|
|
||||||
&mut frame,
|
|
||||||
texture,
|
|
||||||
match *attributes.user_data.buffer.as_ref().unwrap() {
|
|
||||||
Buffer::Egl { ref images } => images.y_inverted,
|
|
||||||
Buffer::Shm { .. } => false,
|
|
||||||
},
|
|
||||||
match *attributes.user_data.buffer.as_ref().unwrap() {
|
|
||||||
Buffer::Egl { ref images } => (images.width, images.height),
|
|
||||||
Buffer::Shm { ref size, .. } => *size,
|
|
||||||
},
|
|
||||||
(x, y),
|
|
||||||
screen_dimensions,
|
|
||||||
::glium::Blend {
|
|
||||||
color: ::glium::BlendingFunction::Addition {
|
|
||||||
source: ::glium::LinearBlendingFactor::One,
|
|
||||||
destination:
|
|
||||||
::glium::LinearBlendingFactor::OneMinusSourceAlpha,
|
|
||||||
},
|
|
||||||
alpha: ::glium::BlendingFunction::Addition {
|
|
||||||
source: ::glium::LinearBlendingFactor::One,
|
|
||||||
destination:
|
|
||||||
::glium::LinearBlendingFactor::OneMinusSourceAlpha,
|
|
||||||
},
|
|
||||||
..Default::default()
|
|
||||||
},
|
|
||||||
);
|
|
||||||
TraversalAction::DoChildren((x, y))
|
|
||||||
} else {
|
|
||||||
// we are not display, so our children are neither
|
|
||||||
TraversalAction::SkipChildren
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
frame.finish().unwrap();
|
|
||||||
|
|
||||||
event_loop.dispatch(Some(16)).unwrap();
|
event_loop.dispatch(Some(16)).unwrap();
|
||||||
display.flush_clients();
|
display.flush_clients();
|
||||||
|
|
Loading…
Reference in New Issue