rootston: add view_create

so we can do basic view setup. Will be used to initialize alpha.
This commit is contained in:
Guido Günther 2018-02-23 11:50:09 +01:00
parent 69409ea3cb
commit e6ca78b0e4
6 changed files with 11 additions and 4 deletions

View file

@ -22,6 +22,12 @@
#include "rootston/view.h"
#include "rootston/xcursor.h"
struct roots_view *view_create() {
struct roots_view *view = calloc(1, sizeof(struct roots_view));
return view;
}
void view_get_box(const struct roots_view *view, struct wlr_box *box) {
box->x = view->x;
box->y = view->y;