From owner-freebsd-questions Fri Dec 12 06:05:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA20685 for questions-outgoing; Fri, 12 Dec 1997 06:05:07 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from iconmail.bellatlantic.net (iconmail.bellatlantic.net [199.173.162.30]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA20667 for ; Fri, 12 Dec 1997 06:04:59 -0800 (PST) (envelope-from dmm125@bellatlantic.net) Received: from myname.my.domain (client201-122-33.bellatlantic.net [151.201.122.33]) by iconmail.bellatlantic.net (IConNet Sendmail) with SMTP id JAA17424 for ; Fri, 12 Dec 1997 09:04:54 -0500 (EST) Date: Fri, 12 Dec 1997 09:04:45 +0000 (GMT) From: Donn Miller X-Sender: dmm125@myname.my.domain To: questions@freebsd.org Subject: libvgl: documentation?? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Is there any docs on libvgl (for 2.2.5-RELEASE)? I would like to know how to write a basic console-mode graphics program. Here is my sample program: #include #include #include #include #include int main (int argc, char **argv) { VGLInit(M_VGA11); VGLBox(NULL, 10, 10, 30 , 30, 1); return 0; } I couldn't get it to do anything but return me to the prompt. Or is -current required to run this? Thanks a lot, Donn