ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/gfxaccel.cpp
(Generate patch)

Comparing SheepShaver/src/gfxaccel.cpp (file contents):
Revision 1.1 by gbeauche, 2004-07-02T06:06:33Z vs.
Revision 1.3 by gbeauche, 2005-01-30T21:48:19Z

# Line 1 | Line 1
1   /*
2   *  gfxaccel.cpp - Generic Native QuickDraw acceleration
3   *
4 < *  SheepShaver (C) 1997-2004 Marc Hellwig and Christian Bauer
4 > *  SheepShaver (C) 1997-2005 Marc Hellwig and Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 413 | Line 413 | void VideoInstallAccel(void)
413                  WriteMacInt32(base + 0, NativeTVECT(NATIVE_BITBLT_HOOK));
414                  WriteMacInt32(base + 4, NativeTVECT(NATIVE_SYNC_HOOK));
415                  WriteMacInt32(base + 8, ACCL_BITBLT);
416 <                NQDMisc(6, bitblt_hook_info.ptr());
416 >                NQDMisc(6, bitblt_hook_info.addr());
417  
418                  SheepVar fillrect_hook_info(sizeof(accl_hook_info));
419                  base = fillrect_hook_info.addr();
420                  WriteMacInt32(base + 0, NativeTVECT(NATIVE_FILLRECT_HOOK));
421                  WriteMacInt32(base + 4, NativeTVECT(NATIVE_SYNC_HOOK));
422                  WriteMacInt32(base + 8, ACCL_FILLRECT);
423 <                NQDMisc(6, fillrect_hook_info.ptr());
423 >                NQDMisc(6, fillrect_hook_info.addr());
424          }
425   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines