From owner-freebsd-multimedia Thu Dec 23 20:40: 0 1999 Delivered-To: freebsd-multimedia@freebsd.org Received: from hurricane.columbus.rr.com (columbus.rr.com [204.210.252.19]) by hub.freebsd.org (Postfix) with ESMTP id D966514E50 for ; Thu, 23 Dec 1999 20:39:57 -0800 (PST) (envelope-from caa@columbus.rr.com) Received: from columbus.rr.com ([24.95.60.151]) by hurricane.columbus.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Thu, 23 Dec 1999 23:39:43 -0500 Received: (from caa@localhost) by columbus.rr.com (8.9.3/8.9.3) id XAA94095; Thu, 23 Dec 1999 23:39:54 -0500 (EST) (envelope-from caa) Date: Thu, 23 Dec 1999 23:39:54 -0500 From: "Charles Anderson" To: "Daniel J. O'Connor" Cc: Soren Schmidt , multimedia@FreeBSD.ORG, Martin Cracauer Subject: Re: Quake1 source GPL'ed Message-ID: <19991223233954.B93977@midgard.dhs.org> References: <199912221020.LAA19273@freebsd.dk> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="a8Wt8u1KmwUX3Y2C" X-Mailer: Mutt 1.0i In-Reply-To: ; from darius@dons.net.au on Thu, Dec 23, 1999 at 08:51:54PM +1030 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Here is what I did to gl_vidlinuxglx.c it looks much better now, but I don't have any control over it (the keyboard & mouse grab don't seem to be working) , and the sound doesn't work. Evidently the shared texture bit is broken. gl_ztrick makes it not look transparent, but it also seems to slow it down, you can also set this in the console (but I can't because of the afformentioned keyboard problem). -Charlie On Thu, Dec 23, 1999 at 08:51:54PM +1030, Daniel J. O'Connor wrote: > > On 22-Dec-99 Soren Schmidt wrote: > > I have a libvgl & X11 version of it, does that count ?? > > Ooh neat :) > > I just started a vgl version I guess I'll hold off 8-) > > Can I have your diffs? > > I rewrote the stinky GNU makefile too.. > > I tried to get the GL version going but it has some.. problems.. > > (Compiles and links, but doesn't look very nice at all :) > > --- > Daniel O'Connor software and network engineer > for Genesis Software - http://www.gsoft.com.au > "The nice thing about standards is that there > are so many of them to choose from." > -- Andrew Tanenbaum > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message -- Charles Anderson caa@columbus.rr.com No quote, no nothin' --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="gl_vidlinuxglx.c.pat" --- gl_vidlinuxglx.c.orig Thu Dec 23 23:31:47 1999 +++ gl_vidlinuxglx.c Thu Dec 23 18:47:44 1999 @@ -20,7 +20,7 @@ #include #include #include -#include +/*#include */ #include #include #include @@ -91,7 +91,7 @@ float gldepthmin, gldepthmax; -cvar_t gl_ztrick = {"gl_ztrick","1"}; +cvar_t gl_ztrick = {"gl_ztrick","0"}; const char *gl_vendor; const char *gl_renderer; @@ -667,7 +667,9 @@ qgl3DfxSetPaletteEXT((GLuint *)table); is8bit = true; - } else if (strstr(gl_extensions, "GL_EXT_shared_texture_palette") && + } +#if 0 + else if (strstr(gl_extensions, "GL_EXT_shared_texture_palette") && (qglColorTableEXT = dlsym(prjobj, "glColorTableEXT")) != NULL) { char thePalette[256*3]; char *oldPalette, *newPalette; @@ -685,6 +687,7 @@ qglColorTableEXT(GL_SHARED_TEXTURE_PALETTE_EXT, GL_RGB, 256, GL_RGB, GL_UNSIGNED_BYTE, (void *) thePalette); is8bit = true; } +#endif dlclose(prjobj); } --a8Wt8u1KmwUX3Y2C-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message