OpenGL and GGI

2000-02-27 Thread teunis
Heya. Is it possible to do an accelerated 2D driver under OpenGL? Should be, I can't see why not. Any driver to look for ideas? It'd be cool to have an accelerated X that runs under OpenGL... ... As an answer to some of the X versus FB stuff G'day, eh? :) - Teunis

ggiResources

2000-02-27 Thread Christoph Egger
Hi all! I have some questions regarding this functions in the ggi/ggi.h: /* Resource functions */ #define ggiResourceAcquire(res, actype) \ (((res) == NULL) ? 0 : ggiResourceFastAcquire((res), (actype))) #define ggiResourceRelease(res) \ (((res) == NULL) ? 0 :

Re: ggiResources

2000-02-27 Thread Marcus Sundberg
[EMAIL PROTECTED] (Christoph Egger) writes: Hi, I have some questions regarding this functions in the ggi/ggi.h: /* Resource functions */ #define ggiResourceAcquire(res, actype) \ (((res) == NULL) ? 0 : ggiResourceFastAcquire((res), (actype))) #define ggiResourceRelease(res) \

Re: default shared lib extensions

2000-02-27 Thread Marcus Sundberg
Andreas Beck [EMAIL PROTECTED] writes: Is there a way to have it determine the correct extension, or add a command-line to configure to change this? Sure. It is already prepared in the configure.in script. The DLLEXT variable has to be set according to the OS detected. This can be

genkgi.so

2000-02-27 Thread Cesar Crusius
I have a question on compiling/installing. I didn't install kgi because my chipset is not supported (chipstech 65xxx), and I didn't know how to compile it for my hardware. As a result, every ggi application exits with a "genkgi.so library not found" error (the app runs ok, but the error is

Re: ggiResources

2000-02-27 Thread Christoph Egger
On 27 Feb 2000, Marcus Sundberg wrote: [EMAIL PROTECTED] (Christoph Egger) writes: Hi, I have some questions regarding this functions in the ggi/ggi.h: /* Resource functions */ #define ggiResourceAcquire(res, actype) \ (((res) == NULL) ? 0 :

Re: default shared lib extensions

2000-02-27 Thread Andreas Beck
if test "$ac_cv_header_windows_h" != "yes"; then DLLEXT=dll fi Not really nice, I'd like to be able to have whatever headers I want on my system without things breaking. Better to do: case "${target}" in *-*-mingw* | *-*-cygwin*) DLLEXT="dll" Right you are. I should have