search for: tdfx

Displaying 20 results from an estimated 27 matches for "tdfx".

Did you mean: dfx
2019 Feb 16
0
[ANNOUNCE] xf86-video-tdfx 1.5.0
...ecomputerlab.com -- Alan Coopersmith (4): configure: Drop AM_MAINTAINER_MODE autogen.sh: Honor NOCONFIGURE=1 Update README for gitlab migration Update configure.ac bug URL for gitlab migration Emil Velikov (2): autogen.sh: use quoted string variables xf86-video-tdfx: remove the GlxSetVisualConfigs stub and friends Kevin Brace (5): Eliminate unused variable compilation warning Eliminate set but not used variable compilation warnings Changing result parameter type for ScreenWakeupHandlerProcPtr Eliminate log message parameter type compil...
2017 Jan 17
0
[ANNOUNCE] xf86-video-tdfx 1.4.7
Adam Jackson (1): Adapt Block/WakeupHandler signature for ABI 23 Matt Turner (1): xf86-video-tdfx 1.4.7 git tag: xf86-video-tdfx-1.4.7 https://xorg.freedesktop.org/archive/individual/driver/xf86-video-tdfx-1.4.7.tar.bz2 MD5: a7ba739c9e22ee6071750306cbac0b72 xf86-video-tdfx-1.4.7.tar.bz2 SHA1: 536e3136b85e44deab36be3bf24983453ac0422a xf86-video-tdfx-1.4.7.tar.bz2 SHA256: 4cf48ee14ead52b2349...
2015 Feb 22
0
[ANNOUNCE] xf86-video-tdfx 1.4.6
...Use new pci_device_(un)map_range functions instead of deprecated ones Remove unreachable breaks after return statements Use the PCI ID macros instead of hardcoded values Unmap MMIO ranges for all chips Add more PCI IDs for supported chips Matt Turner (1): xf86-video-tdfx 1.4.6 git tag: xf86-video-tdfx-1.4.6 http://xorg.freedesktop.org/archive/individual/driver/xf86-video-tdfx-1.4.6.tar.bz2 MD5: 3ad54183fa339ef2ab10e2704ba95060 xf86-video-tdfx-1.4.6.tar.bz2 SHA1: a6c5abc7a957c7396b57d36a09f4f5e0143e4d15 xf86-video-tdfx-1.4.6.tar.bz2 SHA256: 3a8a88867c40ad61f1c9...
2008 Mar 19
0
[ANNOUNCE] xf86-video-tdfx 1.4.0
Adam Jackson (2): Death to RCS tags. tdfx 1.4.0 Brice Goglin (1): TDFX_*_VERSION using PACKAGE_VERSION_* Dave Airlie (1): update tdfx to use proper pciaccess detection Ian Romanick (6): Supply NULL driverFunc pointer in DriverRec. Wrap pciReadLong / pciWriteLong with macros. Make TDFXGetRec return the point...
2020 Feb 25
1
[PATCH 1/3] drm: Add separate state structure for legacy, non-KMS drivers
...| 4 ++++ > drivers/gpu/drm/mga/mga_drv.c | 4 ++++ > drivers/gpu/drm/nouveau/nouveau_drm.c | 8 ++++++++ > drivers/gpu/drm/r128/r128_drv.c | 4 ++++ > drivers/gpu/drm/savage/savage_drv.c | 4 ++++ > drivers/gpu/drm/sis/sis_drv.c | 4 ++++ > drivers/gpu/drm/tdfx/tdfx_drv.c | 4 ++++ > drivers/gpu/drm/via/via_drv.c | 4 ++++ > include/drm/drm_drv.h | 3 +++ > include/drm/drm_legacy.h | 6 ++++++ > 11 files changed, 49 insertions(+) > > diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_d...
2020 Feb 25
7
[PATCH 0/3] Add separate non-KMS state; constify struct drm_driver
...rivers/gpu/drm/mga/mga_drv.c | 16 ++++++++++------ drivers/gpu/drm/nouveau/nouveau_drm.c | 8 ++++++++ drivers/gpu/drm/r128/r128_drv.c | 16 ++++++++++------ drivers/gpu/drm/savage/savage_drv.c | 12 ++++++++---- drivers/gpu/drm/sis/sis_drv.c | 8 ++++++-- drivers/gpu/drm/tdfx/tdfx_drv.c | 6 +++++- drivers/gpu/drm/via/via_drv.c | 16 ++++++++++------ include/drm/drm_device.h | 2 +- include/drm/drm_drv.h | 21 +++++---------------- include/drm/drm_legacy.h | 27 +++++++++++++++++++++++---- include/drm/drm_pci.h...
2020 Feb 25
0
[PATCH 1/3] drm: Add separate state structure for legacy, non-KMS drivers
...gpu/drm/i810/i810_drv.c | 4 ++++ drivers/gpu/drm/mga/mga_drv.c | 4 ++++ drivers/gpu/drm/nouveau/nouveau_drm.c | 8 ++++++++ drivers/gpu/drm/r128/r128_drv.c | 4 ++++ drivers/gpu/drm/savage/savage_drv.c | 4 ++++ drivers/gpu/drm/sis/sis_drv.c | 4 ++++ drivers/gpu/drm/tdfx/tdfx_drv.c | 4 ++++ drivers/gpu/drm/via/via_drv.c | 4 ++++ include/drm/drm_drv.h | 3 +++ include/drm/drm_legacy.h | 6 ++++++ 11 files changed, 49 insertions(+) diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 7b1a628d1f6e..4ba0...
2020 Feb 25
0
[PATCH 2/3] drm: Move non-kms driver state into struct drm_legacy_state
...11 ++++++----- drivers/gpu/drm/i810/i810_drv.c | 8 ++++---- drivers/gpu/drm/mga/mga_drv.c | 14 +++++++------- drivers/gpu/drm/r128/r128_drv.c | 14 +++++++------- drivers/gpu/drm/savage/savage_drv.c | 10 +++++----- drivers/gpu/drm/sis/sis_drv.c | 6 +++--- drivers/gpu/drm/tdfx/tdfx_drv.c | 2 +- drivers/gpu/drm/via/via_drv.c | 14 +++++++------- include/drm/drm_drv.h | 14 -------------- include/drm/drm_legacy.h | 11 +++++++++++ 17 files changed, 79 insertions(+), 77 deletions(-) diff --git a/drivers/gpu/drm/drm_bufs.c b/drivers/gpu/...
2001 Mar 25
1
Wine + HL(CS) + V3 = opengl mode not supported !?
...pported by your hardware" error from HL. This is only the case when I select the 3DfxMiniGL Driver (as I got a voodoo3). With Default opengl driver it works, but i get 4 fps. With Softwaremode I get 15fps but thats both not playable. I got the XFree tree fromd ri.sourceforge and compiled a tdfx.o my XServer loads it and i installed glide from glide.yourceforge.net and Quake3 runs without any problems ! Anyone got an idea whats wrong ? Alex
2017 May 18
1
[PATCH v3 00/16] gpu/drm: remove -Iinclude/drm compiler flags from Makefile
...compiler flag drm/omap: remove unneeded -Iinclude/drm compiler flag drm/r128: remove unneeded -Iinclude/drm compiler flag drm/savage: remove unneeded -Iinclude/drm compiler flag drm/sis: remove unneeded -Iinclude/drm compiler flag drm/stm: remove unneeded -Iinclude/drm compiler flag drm/tdfx: remove unneeded -Iinclude/drm compiler flag drm/udl: remove unneeded -Iinclude/drm compiler flag drm/vgem: remove unneeded -Iinclude/drm compiler flag drm/via: remove unneeded -Iinclude/drm compiler flag drivers/gpu/drm/gma500/Makefile | 1 - drivers/gpu/drm/i2c/Makefile...
2017 May 18
1
[PATCH v3 00/16] gpu/drm: remove -Iinclude/drm compiler flags from Makefile
...compiler flag drm/omap: remove unneeded -Iinclude/drm compiler flag drm/r128: remove unneeded -Iinclude/drm compiler flag drm/savage: remove unneeded -Iinclude/drm compiler flag drm/sis: remove unneeded -Iinclude/drm compiler flag drm/stm: remove unneeded -Iinclude/drm compiler flag drm/tdfx: remove unneeded -Iinclude/drm compiler flag drm/udl: remove unneeded -Iinclude/drm compiler flag drm/vgem: remove unneeded -Iinclude/drm compiler flag drm/via: remove unneeded -Iinclude/drm compiler flag drivers/gpu/drm/gma500/Makefile | 1 - drivers/gpu/drm/i2c/Makefile...
2001 Aug 12
0
Half-Life, Debian, Sid, Wine, Crap, VooDoo, Banshee, OpenGL, Mesa, Glide
...35 - 90.0 VertRefresh 60-150 EndSection Section "Device" Identifier "Standard VGA" VendorName "Unknown" BoardName "Unknown" EndSection Section "Device" Identifier "Voodoo Banshee (generic)" Driver "tdfx" EndSection Section "Screen" Identifier "Screen 1" Device "Voodoo Banshee (generic)" Monitor "My Monitor" DefaultDepth 16 Subsection "Display" Depth 8 Modes "1280x1024"...
2020 Feb 26
1
[PATCH 0/3] Add separate non-KMS state; constify struct drm_driver
...+++++++------ >> drivers/gpu/drm/nouveau/nouveau_drm.c | 8 ++++++++ >> drivers/gpu/drm/r128/r128_drv.c | 16 ++++++++++------ >> drivers/gpu/drm/savage/savage_drv.c | 12 ++++++++---- >> drivers/gpu/drm/sis/sis_drv.c | 8 ++++++-- >> drivers/gpu/drm/tdfx/tdfx_drv.c | 6 +++++- >> drivers/gpu/drm/via/via_drv.c | 16 ++++++++++------ >> include/drm/drm_device.h | 2 +- >> include/drm/drm_drv.h | 21 +++++---------------- >> include/drm/drm_legacy.h | 27 ++++++++++++++++...
2001 Apr 02
3
Problem with OpenGL
I'm using wine 20010326 to play Half Life. Works fine in software graphics mode, but not quite fast enough to be playable. In OpenGL mode, it runs at about 5 fps, and I get no textures. I have a Voodoo 3 3000 AGP. OpenGL works fine in native Linux (I get about 120 fps in the 'gears' program). Does anyone have any suggestions as to what I can do to get to the bottom of this? -- Steve
2020 Feb 25
0
[PATCH 0/3] Add separate non-KMS state; constify struct drm_driver
...v.c | 16 ++++++++++------ > drivers/gpu/drm/nouveau/nouveau_drm.c | 8 ++++++++ > drivers/gpu/drm/r128/r128_drv.c | 16 ++++++++++------ > drivers/gpu/drm/savage/savage_drv.c | 12 ++++++++---- > drivers/gpu/drm/sis/sis_drv.c | 8 ++++++-- > drivers/gpu/drm/tdfx/tdfx_drv.c | 6 +++++- > drivers/gpu/drm/via/via_drv.c | 16 ++++++++++------ > include/drm/drm_device.h | 2 +- > include/drm/drm_drv.h | 21 +++++---------------- > include/drm/drm_legacy.h | 27 +++++++++++++++++++++++---- >...
2008 Jan 24
4
Fedora user moving to CentOS
Greetings, I'm a Fedora user likely going to switch to CentOS in the next few days. I'm wondering if anyone has some heads up advice for me? I am very familiar with FC6 and before so I anticipate few problems I haven't already seen (and know were fixed). The main reason for the move is so I don't have to re-install so frequently and hopefully not have to deal with so many
2009 Feb 13
4
running x.org on powerpc64 with nvidia6200
...--) PCI:*(5 at 1:0:0) nVidia Corporation NV44 [GeForce 6200 LE] rev 161, Mem @ 0x1020bd9c/976, 0x1020bd9c/976, 0x1020bd9c/976, BIOS @ 0x????????/270581148 List of video drivers: nouveau mga i740 sis savage i128 mach64 trident tdfx s3virge dummy r128 cirrus siliconmotion ati glint v4l sisusb rendition radeon apm ast voodoo fbdev vesa (II) LoadModule: "nouveau" (II) Loading /usr/lib/xorg/mo...
2010 Nov 12
2
X11R7.6 Release Candidate 1
...xf86-video-suncg3 1.1.1 1.1.1 xf86-video-suncg6 1.1.1 1.1.1 xf86-video-sunffb 1.2.1 1.2.1 xf86-video-sunleo 1.2.0 1.2.0 xf86-video-suntcx 1.1.1 1.1.1 xf86-video-tdfx 1.4.3 1.4.3 xf86-video-tga 1.2.1 1.2.1 xf86-video-trident 1.3.3 1.3.4 xf86-video-tseng 1.2.3 1.2.4 xf86-video-v4l 0.2.0 0.2.0 xf86-video-vesa 2.2.1 2.3.0...
2008 Oct 04
0
Attributes of top level environments clobbered (was Re: [R] possible bug in function 'var' in R 2.7.2?)
...1-7.1.el5 installed >> xorg-x11-drv-sisusb.x86_64 0.8.1-4.1 installed >> xorg-x11-drv-spaceorb.x86_64 1.1.0-1.1 installed >> xorg-x11-drv-summa.x86_64 1.1.0-1.1 installed >> xorg-x11-drv-tdfx.x86_64 1.2.1-3.1 installed >> xorg-x11-drv-tek4957.x86_64 1.1.0-1.1 installed >> xorg-x11-drv-trident.x86_64 1.2.1-3.fc6 installed >> xorg-x11-drv-ur98.x86_64 1.1.0-1.1 inst...
2004 Feb 05
0
Majordomo results: STATUS
...vy9g' not recognized. >>>> x4bQArr3YOZsCgsCUo1GCFays8dOXPcBdRQSWDnCGxZeLT9bQI1sJIxCCy+Z5IgAYH18PNstbN0v **** Command 'x4bqarr3yozscgscuo1gcfays8doxpcbdrqswdncgxzelt9bqi1sjixccy+z5igayh18pnstbn0v' not recognized. >>>> H4hdf74xgB5wJxmb7v/OPCdTUIpFf/bYG8ADxlkEhcCbe//tdFX+E4B9fwJ81ccHnDgqbDJlu79Q **** Command 'h4hdf74xgb5wjxmb7v/opcdtuipff/byg8adxlkehccbe//tdfx+e4b9fwj81cchndgqbdjlu79q' not recognized. >>>> N1NoBjhTUzoUYWZbOHUJAHAMAEPDydrdxaCDxXSjGevt799N8naD7ECmwGikWQ5ZUGoBat1mMw2+ **** Command 'n1nobjhtuzouywzbohujahamaepdydrdxacdxxsjgevt79...