'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Matrox Mystique

The Mystique and Mystique 220 are 2D, 3D, and video accelerator cards for personal computers designed by Matrox, using the VGA connector. The original Mystique was introduced in 1996, with the slightly upgraded Mystique 220 having been released in 1997.

History

Matrox had been known for years as a significant player in the high-end 2D graphics accelerator market. Cards they produced were excellent Windows accelerators, and the company's Millennium card, released in 1995, excelled at MS-DOS performance as well. With regard to 3D acceleration, Matrox stepped forward in 1994 with their Impression Plus. However, that card only could accelerate a very limited feature set, and was primarily targeted at CAD applications. The Impression could not perform hardware texture mapping, for example, requiring Gouraud shading or lower-quality techniques. Very few games took advantage of the 3D capabilities of Impression Plus, with the only known games being the three titles that were bundled with the card in its '3D Superpack' CD bundle: 3D fighting game, Sento by 47 Tek; 3D space combat game, IceHawk by Amorphous Designs, and Specter MGA (aka Specter VR) by Velocity.

Podcasts:

  • Matrox Mystique Promotional Video

    A video from the driver disc for the 1997 Matrox Mystique video accelerator card. I used to play MechWarrior 2 on mine.

    published: 22 May 2016
  • Moto Racer - Matrox Mystique Enhanced Edition (1997)

    Moto Racer: Matrox Mystique Enhanced Edition was a classic Windows motorbike racing game bundled with Matrox Mystique 220 cards in 1997, and like many OEM bundles, had a renderer that was optimised for this early 3D accelerator. So lets take a look! Relevant Links: Extra Tracks, Patches, Downloads & Cheats: https://ctrl-alt-rees.com/2021-06-28-moto-racer-pc-extra-track-patch-downloads-cheats.html Support the channel! Patreon: https://www.patreon.com/ctrlaltrees Become a Member: Link Above! Ko-Fi: https://ko-fi.com/ctrlaltrees VIP Superfans: Action Retro: https://www.youtube.com/c/ActionRetro Arthur Ludwiczak BitterBlitter D. 'Xalior' Rimron-Soutter: https://www.youtube.com/user/Xalior Kevin Leah Mr Lurch: https://www.youtube.com/mrlurchsthings Retr0rewind: https://www.youtube.com/user/R...

    published: 29 Jun 2021
  • The Matrox Mystique 1996 Build

    Way back in 1996 I was enjoying life with my Packard Bell 100mhz pentium system and with the rise in the 3D accelerator, that Christmas I backed the Matrox Mystique. The card originally came with 3 full games to enjoy, scorched planet, mechwarrior 2 and destruction derby 2. Back in the day I couldn't play DD2 as my processor wasn't fast enough. This weeks build then is all about getting that game running, yes I still have the original disk and while some may think it a waste of time its one I'm super excited for. BTW I can only apologise for the extremely poor quality of recording the screen. I'm still looking for a means of capturing these odd VGA resolutions but I hope to have something sorted soon. Also just noticed the microphone for the second half of this video has developed...

    published: 28 Sep 2020
  • Worst Game Graphics Cards - Matrox Mystique 220

    Retro review of 1st 3D graphic cards Mystique and Mystique 220 from Matrox. Big THANKS going to F2bnp for english voiceover and comment editing. Test in many other games can be found at http://vintage3d.org/mga1.php Drivers can be downloaded at Matrox site http://www.matrox.com/graphics/es/support/drivers/latest/ List of MSI supported games can be found at http://www.vogons.org/viewtopic.php?f=63&t=33483 Chapters: Matrox history - 0:42 Tested cards - 4:08 Final Reality - 5:17 3DMark 99 Max - 7:50 Tomb Raider 2 demo - 8:21 Forsaken - 9:54 Carmageddon 2 demo - 11:47 GLQuake - 13:08 Turok demo - 14:31 Croc - 16:20 Incoming demo...

    published: 07 Aug 2017
  • Tomb Raider 3dfx vs Matrox Mystique versions comparison

    Matrox Mystique 220 4 Mb; Core 2 Duo e7300 2,66 GHz; 128 Mb DDR2 667 limited to 96 Mb by turning max 32 Mb memory on integrated graphics (It needs to have 64 Mb in order to Matrox MSI applications work normally (Clean DOS, win95 and 98 was tested), but 96 Mb is quite enough to achieve a lucky pass from several attempts to run); ASRock 775i65G R3.0; SBLive SB0060; Win98SE; 4.12.013 driver 3dfx Voodoo 4 Mb; Pentium 4 2.8/512/533; 768 Mb DDR 333; Abit SA7 Rev 1.01; SBLive SB0060; Win98SE; lucky switch to 3D from few attempts with such CPU; artifacts in game could be easily eliminated by turning on and off of mipmapping. Resolution 640x480, No mipmapping Startup Logo of Mystique version 0:00 Demo 1 0:16 Demo 2 0:51 Demo 1 Speed 50% 1:22 Demo 2 Speed 50% 2:32 Walking 3:35

    published: 27 Jul 2020
  • MATROX G100 vs. MATROX MYSTIQUE

    Matrox Mystique 4 MB / PCI ja Matrox G100 8 MB / AGP. Voiko tästä enää tunnelma parantua. Homeworld Need for Speed 5 Flight Simulator 98 Grand Prix 3 Superbike World Championship Toca 2 Darkstone Peleissä korkeimmat asetukset, 640 x 480 ja 16-bittiset värit. Ruudunpäivitys on rajattu virkistystaajuuteen.

    published: 21 Apr 2018
  • Matrox Mystique Screamer 2

    Screamer 2 1996 Graphics comparison Matrox Mystique vs 3DFX Voodoo vs Software renderer #retrohardware #dos #3dfx

    published: 06 Feb 2022
  • Exploring a Matrox Mystique 220 | 486 Fun

    Hey everyone, Playing around with some old hardware again. I hear these Matrox cards have superb VGA quality. I was curious and wondering if I could patch a problem with some Apogee games at the same time. More info bellow. To find the patch for Keen Games and more on the issue: https://www.vogons.org/viewtopic.php?f=61&t=54291 Facebook https://www.facebook.com/thesmokingcap Instagram https://www.instagram.com/thesmokingcap/ Music From https://www.epidemicsound.com

    published: 12 Jan 2022
  • Matrox Mystique 220 vs Final Reality

    Test of Matrox Mystique 220 card (4MB, PCI, 1997) in Final Reality.

    published: 28 Mar 2016
  • Pentium 200 boot (Matrox Mystique+Diamond Monster 3D)

    published: 27 Nov 2022
developed with YouTube
Matrox Mystique Promotional Video
2:04

Matrox Mystique Promotional Video

  • Order:
  • Duration: 2:04
  • Uploaded Date: 22 May 2016
  • views: 13266
A video from the driver disc for the 1997 Matrox Mystique video accelerator card. I used to play MechWarrior 2 on mine.
https://wn.com/Matrox_Mystique_Promotional_Video
Moto Racer - Matrox Mystique Enhanced Edition (1997)
7:01

Moto Racer - Matrox Mystique Enhanced Edition (1997)

  • Order:
  • Duration: 7:01
  • Uploaded Date: 29 Jun 2021
  • views: 3218
Moto Racer: Matrox Mystique Enhanced Edition was a classic Windows motorbike racing game bundled with Matrox Mystique 220 cards in 1997, and like many OEM bundles, had a renderer that was optimised for this early 3D accelerator. So lets take a look! Relevant Links: Extra Tracks, Patches, Downloads & Cheats: https://ctrl-alt-rees.com/2021-06-28-moto-racer-pc-extra-track-patch-downloads-cheats.html Support the channel! Patreon: https://www.patreon.com/ctrlaltrees Become a Member: Link Above! Ko-Fi: https://ko-fi.com/ctrlaltrees VIP Superfans: Action Retro: https://www.youtube.com/c/ActionRetro Arthur Ludwiczak BitterBlitter D. 'Xalior' Rimron-Soutter: https://www.youtube.com/user/Xalior Kevin Leah Mr Lurch: https://www.youtube.com/mrlurchsthings Retr0rewind: https://www.youtube.com/user/Retr0Rewind Woz Brown: https://www.retrogamer.net Socials: RMC Discord ctrl-alt-rees Room: https://discord.com/channels/431348664489738251/735847458000863252 Twitter: https://twitter.com/ctrl_alt_rees Instagram: https://www.instagram.com/ctrl.alt.rees Chapters: 00:00 Introduction 00:15 Moto Racer Story 00:56 Matrox Mystique Bundle 01:38 Moto Racer Features & Overview 03:56 Free DLC Tracks 05:10 Extra Stuff & Cheats 05:43 Other Bits 06:04 Sequels & Whatnot 06:19 Outro & Patron Thanks Music Credit: Royalty-Free Music From Epidemic Sound: https://www.epidemicsound.com #retrogaming #gamereview #matrox
https://wn.com/Moto_Racer_Matrox_Mystique_Enhanced_Edition_(1997)
The Matrox Mystique 1996 Build
25:38

The Matrox Mystique 1996 Build

  • Order:
  • Duration: 25:38
  • Uploaded Date: 28 Sep 2020
  • views: 4868
Way back in 1996 I was enjoying life with my Packard Bell 100mhz pentium system and with the rise in the 3D accelerator, that Christmas I backed the Matrox Mystique. The card originally came with 3 full games to enjoy, scorched planet, mechwarrior 2 and destruction derby 2. Back in the day I couldn't play DD2 as my processor wasn't fast enough. This weeks build then is all about getting that game running, yes I still have the original disk and while some may think it a waste of time its one I'm super excited for. BTW I can only apologise for the extremely poor quality of recording the screen. I'm still looking for a means of capturing these odd VGA resolutions but I hope to have something sorted soon. Also just noticed the microphone for the second half of this video has developed a hissing sound. Aargh... I admit this video is a bit of a mess! Music in this video taken from the game descent.
https://wn.com/The_Matrox_Mystique_1996_Build
Worst Game Graphics Cards - Matrox Mystique 220
32:45

Worst Game Graphics Cards - Matrox Mystique 220

  • Order:
  • Duration: 32:45
  • Uploaded Date: 07 Aug 2017
  • views: 28339
Retro review of 1st 3D graphic cards Mystique and Mystique 220 from Matrox. Big THANKS going to F2bnp for english voiceover and comment editing. Test in many other games can be found at http://vintage3d.org/mga1.php Drivers can be downloaded at Matrox site http://www.matrox.com/graphics/es/support/drivers/latest/ List of MSI supported games can be found at http://www.vogons.org/viewtopic.php?f=63&t=33483 Chapters: Matrox history - 0:42 Tested cards - 4:08 Final Reality - 5:17 3DMark 99 Max - 7:50 Tomb Raider 2 demo - 8:21 Forsaken - 9:54 Carmageddon 2 demo - 11:47 GLQuake - 13:08 Turok demo - 14:31 Croc - 16:20 Incoming demo - 17:12 Half-Life - 19:04 Wipeout 2097 - 19:48 Expendable - 21:03 AvP Gold - 22:19 Unreal - 23:45 Bus mastering - 25:22 Conclusion - 26:39 3DMark 99 Max demo - 27:45 Matrox Mystique Promotional Video - https://youtu.be/-ir8NS3sIrk Other videos of MSI games: Battle Arena Toshinden - https://youtu.be/t9Zqy5BZQ1E?t=1m24s Mechwarrior 2 - https://youtu.be/wWzWdwj9NvU?t=39s Screamer Rally - https://youtu.be/FCszsM--AUA?t=58s Tomb Raider - https://youtu.be/tItGU1i0zsw Background music: Babylon - Disco Ultralounge by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/) Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100314 Artist: http://incompetech.com/
https://wn.com/Worst_Game_Graphics_Cards_Matrox_Mystique_220
Tomb Raider 3dfx vs Matrox Mystique versions comparison
4:09

Tomb Raider 3dfx vs Matrox Mystique versions comparison

  • Order:
  • Duration: 4:09
  • Uploaded Date: 27 Jul 2020
  • views: 3732
Matrox Mystique 220 4 Mb; Core 2 Duo e7300 2,66 GHz; 128 Mb DDR2 667 limited to 96 Mb by turning max 32 Mb memory on integrated graphics (It needs to have 64 Mb in order to Matrox MSI applications work normally (Clean DOS, win95 and 98 was tested), but 96 Mb is quite enough to achieve a lucky pass from several attempts to run); ASRock 775i65G R3.0; SBLive SB0060; Win98SE; 4.12.013 driver 3dfx Voodoo 4 Mb; Pentium 4 2.8/512/533; 768 Mb DDR 333; Abit SA7 Rev 1.01; SBLive SB0060; Win98SE; lucky switch to 3D from few attempts with such CPU; artifacts in game could be easily eliminated by turning on and off of mipmapping. Resolution 640x480, No mipmapping Startup Logo of Mystique version 0:00 Demo 1 0:16 Demo 2 0:51 Demo 1 Speed 50% 1:22 Demo 2 Speed 50% 2:32 Walking 3:35
https://wn.com/Tomb_Raider_3Dfx_Vs_Matrox_Mystique_Versions_Comparison
MATROX G100 vs. MATROX MYSTIQUE
6:36

MATROX G100 vs. MATROX MYSTIQUE

  • Order:
  • Duration: 6:36
  • Uploaded Date: 21 Apr 2018
  • views: 3016
Matrox Mystique 4 MB / PCI ja Matrox G100 8 MB / AGP. Voiko tästä enää tunnelma parantua. Homeworld Need for Speed 5 Flight Simulator 98 Grand Prix 3 Superbike World Championship Toca 2 Darkstone Peleissä korkeimmat asetukset, 640 x 480 ja 16-bittiset värit. Ruudunpäivitys on rajattu virkistystaajuuteen.
https://wn.com/Matrox_G100_Vs._Matrox_Mystique
Matrox Mystique Screamer 2
2:10

Matrox Mystique Screamer 2

  • Order:
  • Duration: 2:10
  • Uploaded Date: 06 Feb 2022
  • views: 651
Screamer 2 1996 Graphics comparison Matrox Mystique vs 3DFX Voodoo vs Software renderer #retrohardware #dos #3dfx
https://wn.com/Matrox_Mystique_Screamer_2
Exploring a Matrox Mystique 220 | 486 Fun
13:55

Exploring a Matrox Mystique 220 | 486 Fun

  • Order:
  • Duration: 13:55
  • Uploaded Date: 12 Jan 2022
  • views: 1222
Hey everyone, Playing around with some old hardware again. I hear these Matrox cards have superb VGA quality. I was curious and wondering if I could patch a problem with some Apogee games at the same time. More info bellow. To find the patch for Keen Games and more on the issue: https://www.vogons.org/viewtopic.php?f=61&t=54291 Facebook https://www.facebook.com/thesmokingcap Instagram https://www.instagram.com/thesmokingcap/ Music From https://www.epidemicsound.com
https://wn.com/Exploring_A_Matrox_Mystique_220_|_486_Fun
Matrox Mystique 220 vs Final Reality
8:10

Matrox Mystique 220 vs Final Reality

  • Order:
  • Duration: 8:10
  • Uploaded Date: 28 Mar 2016
  • views: 969
Test of Matrox Mystique 220 card (4MB, PCI, 1997) in Final Reality.
https://wn.com/Matrox_Mystique_220_Vs_Final_Reality
Pentium 200 boot (Matrox Mystique+Diamond Monster 3D)
1:01

Pentium 200 boot (Matrox Mystique+Diamond Monster 3D)

  • Order:
  • Duration: 1:01
  • Uploaded Date: 27 Nov 2022
  • views: 295
https://wn.com/Pentium_200_Boot_(Matrox_Mystique_Diamond_Monster_3D)
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Matrox Mystique Promotional Video

A video from the driver disc for the 1997 Matrox Mystique video accelerator card. I used to play MechWarrior 2 on mine.
2:04
Matrox Mystique Promotional Video
A video from the driver disc for the 1997 Matrox Mystique video accelerator card. I used t...
published: 22 May 2016
Play in Full Screen
7:01
Moto Racer - Matrox Mystique Enhanced Edition (1997)
Moto Racer: Matrox Mystique Enhanced Edition was a classic Windows motorbike racing game b...
published: 29 Jun 2021
Play in Full Screen
25:38
The Matrox Mystique 1996 Build
Way back in 1996 I was enjoying life with my Packard Bell 100mhz pentium system and with t...
published: 28 Sep 2020
Play in Full Screen
32:45
Worst Game Graphics Cards - Matrox Mystique 220
Retro review of 1st 3D graphic cards Mystique and Mystique 220 from Matrox. Big THANKS goi...
published: 07 Aug 2017
Play in Full Screen
4:09
Tomb Raider 3dfx vs Matrox Mystique versions comparison
Matrox Mystique 220 4 Mb; Core 2 Duo e7300 2,66 GHz; 128 Mb DDR2 667 limited to 96 Mb by t...
published: 27 Jul 2020
Play in Full Screen
6:36
MATROX G100 vs. MATROX MYSTIQUE
Matrox Mystique 4 MB / PCI ja Matrox G100 8 MB / AGP. Voiko tästä enää tunnelma parantua. ...
published: 21 Apr 2018
Play in Full Screen
2:10
Matrox Mystique Screamer 2
Screamer 2 1996 Graphics comparison Matrox Mystique vs 3DFX Voodoo vs Software renderer ...
published: 06 Feb 2022
Play in Full Screen
13:55
Exploring a Matrox Mystique 220 | 486 Fun
Hey everyone, Playing around with some old hardware again. I hear these Matrox cards have ...
published: 12 Jan 2022
Play in Full Screen
8:10
Matrox Mystique 220 vs Final Reality
Test of Matrox Mystique 220 card (4MB, PCI, 1997) in Final Reality.
published: 28 Mar 2016
Play in Full Screen
1:01
Pentium 200 boot (Matrox Mystique+Diamond Monster 3D)
published: 27 Nov 2022
Play in Full Screen

Matrox Mystique

The Mystique and Mystique 220 are 2D, 3D, and video accelerator cards for personal computers designed by Matrox, using the VGA connector. The original Mystique was introduced in 1996, with the slightly upgraded Mystique 220 having been released in 1997.

History

Matrox had been known for years as a significant player in the high-end 2D graphics accelerator market. Cards they produced were excellent Windows accelerators, and the company's Millennium card, released in 1995, excelled at MS-DOS performance as well. With regard to 3D acceleration, Matrox stepped forward in 1994 with their Impression Plus. However, that card only could accelerate a very limited feature set, and was primarily targeted at CAD applications. The Impression could not perform hardware texture mapping, for example, requiring Gouraud shading or lower-quality techniques. Very few games took advantage of the 3D capabilities of Impression Plus, with the only known games being the three titles that were bundled with the card in its '3D Superpack' CD bundle: 3D fighting game, Sento by 47 Tek; 3D space combat game, IceHawk by Amorphous Designs, and Specter MGA (aka Specter VR) by Velocity.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×