-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a working copy post-that-bug-which-caused-drm-not-to-exit. I …
…think it was either some cache issue or the fact that I had the incf-pointer function (now update-pointer). ulubis.lisp now has two main loops depending on backend (this will come out in the future hopefully) and uses osicat instead of the sb-posix stuff. However it is currently using nix:poll (see osicat/osicat#17) which has not yet been accepted but I want to commit stuff at least locally at the moment. Next step is to see if I can remove the callbacks from the functions in plumbing (I was half way there when the bug cropped up) which will hopefully allow ulubis to run on ccl as well
- Loading branch information
1 parent
c9313fc
commit 558c570
Showing
5 changed files
with
122 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
(ql:quickload :ulubis) | ||
(ql:quickload :ulubis-drm-gbm) | ||
|
||
(sb-ext:save-lisp-and-die "ulubis" | ||
:executable t | ||
:toplevel #'ulubis::run-compositor) | ||
(format t "Building ulubis with DRM backend~%") | ||
|
||
(trivial-dump-core:save-executable "ulubis" #'ulubis::run-compositor) | ||
|
||
(quit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
(ql:quickload :ulubis) | ||
(ql:quickload :ulubis-sdl) | ||
|
||
(sb-ext:save-lisp-and-die "ulubis-sdl" | ||
:executable t | ||
:toplevel #'ulubis::run-compositor) | ||
(trivial-dump-core:save-executable "ulubis-sdl" #'ulubis::run-compositor) | ||
|
||
(quit) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
(in-package :ulubis) | ||
|
||
(defun build (&optional path) | ||
(let ((ulubis-path (namestring (ql:where-is-system :ulubis)))) | ||
(load (concatenate 'string ulubis-path "build/build-ulubis-drm-gbm.lisp")))) | ||
|
||
(defun build-sdl (&optional path) | ||
(let ((ulubis-path (namestring (ql:where-is-system :ulubis)))) | ||
(load (concatenate 'string ulubis-path "build/build-ulubis-sdl.lisp")))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters