Add Licensing and Contributing
[clnl] / src / main / clnl-gltk / setup.lisp
1 ; Copyright 2022 Frank Duncan (frank@consxy.com) under AGPL3.  See distributed LICENSE.txt.
2 (in-package #:clnl-gltk)
3
4 (defun setup ()
5  "SETUP => RESULT
6
7 ARGUMENTS AND VALUES:
8
9   RESULT: undefined
10
11 DESCRIPTION:
12
13   SETUP sets up the clnl-gltk system, calling all the necessary underlying
14   functions.
15
16   Calling before the opengl system has been initialized properly may or may
17   not work, so calling it after everything else has been initialized is
18   recommended."
19  (setup-font)
20  (setup-button))