On Wed, Nov 5, 2014 at 5:26 PM, Thierry Reding <thierry.red...@gmail.com> wrote: >> +struct drm_plane_state { >> + struct drm_crtc *crtc; >> + struct drm_framebuffer *fb; >> + >> + /* Signed dest location allows it to be partially off screen */ >> + int32_t crtc_x, crtc_y; >> + uint32_t crtc_w, crtc_h; > > Should these perhaps be unsized types? For the same reasons you argued > the other day. > >> + >> + /* Source values are 16.16 fixed point */ >> + uint32_t src_x, src_y; >> + uint32_t src_h, src_w; > > Do we really use the 16.16 fixed point format for these? Maybe now would > be a good time to get rid of that if we don't need it. If they're not a > 16.16 fixed point format they could also be unsized.
The samantics and types intentionally and precisely match what we currently pass in through the set_plane ioctl. And yeah most drivers can't do subpixel precise upscaling, but some hardware can do that. So I don't see a point in changing the interface here. I've implemented all the other stuff you've spotted. -Daniel -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx