├── .gitignore ├── N64iOS.xcworkspace └── contents.xcworkspacedata ├── N64iOS ├── Ads │ ├── AltAds.h │ └── AltAds.m ├── BTDevice.h ├── BTDevice.m ├── BTInquiryViewController.h ├── BTInquiryViewController.m ├── Frameworks │ ├── AVSystemController.h │ ├── CDAnonStruct.h │ ├── CGDirectDisplay.h │ ├── CoreSurface.h │ ├── GraphicsServices.h │ ├── IOKit │ │ ├── IOBSD.h │ │ ├── IOKitKeys.h │ │ ├── IOKitLib.h │ │ ├── IOReturn.h │ │ ├── IOSerialKeys.h │ │ ├── IOTypes.h │ │ ├── OSMessageNotification.h │ │ └── ioss.h │ ├── LayerKit │ │ ├── LKLayer.h │ │ └── LKTransform.h │ └── UIKit-Private │ │ ├── UIAlertSheet.h │ │ ├── UIButtonBar.h │ │ ├── UIHardware.h │ │ ├── UIImageAndTextTableCell.h │ │ ├── UIKeyboard.h │ │ ├── UIPreferencesTable.h │ │ ├── UIPreferencesTableCell.h │ │ ├── UIPreferencesTextTableCell.h │ │ ├── UIPushButton.h │ │ ├── UIScroller.h │ │ ├── UISimpleTableCell.h │ │ ├── UISliderControl.h │ │ ├── UISwitchControl.h │ │ ├── UITable.h │ │ ├── UITableCell.h │ │ ├── UITableColumn.h │ │ ├── UITextLabel.h │ │ ├── UITransitionView.h │ │ └── UIView-Geometry.h ├── MainWindow.xib ├── N64iOS │ ├── N64iOS.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── N64iOS │ │ ├── N64AppDelegate.h │ │ ├── N64AppDelegate.m │ │ ├── N64DetailViewController.h │ │ ├── N64DetailViewController.m │ │ ├── N64MasterViewController.h │ │ ├── N64MasterViewController.m │ │ ├── N64Options.h │ │ ├── N64iOS-Info.plist │ │ ├── N64iOS-Prefix.pch │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── MainStoryboard_iPad.storyboard │ │ │ └── MainStoryboard_iPhone.storyboard │ │ ├── main.m │ │ └── mupen64plus.conf │ └── build │ │ ├── Debug-iphoneos │ │ ├── N64iOS.app.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── N64iOS │ │ ├── N64iOS.app │ │ │ ├── Info.plist │ │ │ ├── N64iOS │ │ │ ├── PkgInfo │ │ │ ├── ResourceRules.plist │ │ │ ├── _CodeSignature │ │ │ │ ├── CodeDirectory │ │ │ │ ├── CodeEntitlements │ │ │ │ ├── CodeRequirements │ │ │ │ ├── CodeResources │ │ │ │ └── CodeSignature │ │ │ ├── dummyaudio.dylib │ │ │ ├── dummyinput.dylib │ │ │ ├── dummyvideo.dylib │ │ │ ├── embedded.mobileprovision │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainStoryboard_iPad.storyboardc │ │ │ │ │ ├── 19-view-20.nib │ │ │ │ │ ├── 4-view-26.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── UIViewController-19.nib │ │ │ │ │ ├── UIViewController-4.nib │ │ │ │ │ └── UIViewController-5.nib │ │ │ │ └── MainStoryboard_iPhone.storyboardc │ │ │ │ │ ├── 12-view-13.nib │ │ │ │ │ ├── 21-view-22.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── UIViewController-12.nib │ │ │ │ │ ├── UIViewController-21.nib │ │ │ │ │ └── UIViewController-3.nib │ │ │ ├── gles2n64.conf │ │ │ ├── gles2n64.dylib │ │ │ ├── jttl_audio.conf │ │ │ ├── jttl_audio.dylib │ │ │ ├── mupen64_hle_rsp_azimer.dylib │ │ │ └── mupen64plus.conf │ │ └── libEmulatorAssembly.a │ │ └── N64iOS.build │ │ └── Debug-iphoneos │ │ ├── EmulatorAssembly.build │ │ ├── EmulatorAssembly-all-target-headers.hmap │ │ ├── EmulatorAssembly-generated-files.hmap │ │ ├── EmulatorAssembly-own-target-headers.hmap │ │ ├── EmulatorAssembly-project-headers.hmap │ │ ├── EmulatorAssembly.dep │ │ ├── EmulatorAssembly.hmap │ │ ├── EmulatorAssembly~.dep │ │ ├── Objects-normal │ │ │ └── armv7 │ │ │ │ ├── EmulatorAssembly.LinkFileList │ │ │ │ ├── low.d │ │ │ │ └── low.dia │ │ ├── build-state.dat │ │ └── build-state~.dat │ │ └── N64iOS.build │ │ ├── N64iOS-all-target-headers.hmap │ │ ├── N64iOS-generated-files.hmap │ │ ├── N64iOS-own-target-headers.hmap │ │ ├── N64iOS-project-headers.hmap │ │ ├── N64iOS.dep │ │ ├── N64iOS.hmap │ │ ├── N64iOS.xcent │ │ ├── N64iOS~.dep │ │ ├── Objects-normal │ │ └── armv7 │ │ │ ├── 7zAlloc.d │ │ │ ├── 7zAlloc.dia │ │ │ ├── 7zBuffer.d │ │ │ ├── 7zBuffer.dia │ │ │ ├── 7zCrc.d │ │ │ ├── 7zCrc.dia │ │ │ ├── 7zDecode.d │ │ │ ├── 7zDecode.dia │ │ │ ├── 7zExtract.d │ │ │ ├── 7zExtract.dia │ │ │ ├── 7zHeader.d │ │ │ ├── 7zHeader.dia │ │ │ ├── 7zIn.d │ │ │ ├── 7zIn.dia │ │ │ ├── 7zItem.d │ │ │ ├── 7zItem.dia │ │ │ ├── 7zMain.d │ │ │ ├── 7zMain.dia │ │ │ ├── BranchX86.d │ │ │ ├── BranchX86.dia │ │ │ ├── BranchX86_2.d │ │ │ ├── BranchX86_2.dia │ │ │ ├── LzmaDecode.d │ │ │ ├── LzmaDecode.dia │ │ │ ├── N64AppDelegate.d │ │ │ ├── N64AppDelegate.dia │ │ │ ├── N64DetailViewController.d │ │ │ ├── N64DetailViewController.dia │ │ │ ├── N64MasterViewController.d │ │ │ ├── N64MasterViewController.dia │ │ │ ├── N64iOS.LinkFileList │ │ │ ├── SDL.d │ │ │ ├── SDL.dia │ │ │ ├── SDLUIAccelerationDelegate.d │ │ │ ├── SDLUIAccelerationDelegate.dia │ │ │ ├── SDL_RLEaccel.d │ │ │ ├── SDL_RLEaccel.dia │ │ │ ├── SDL_atomic.d │ │ │ ├── SDL_atomic.dia │ │ │ ├── SDL_audio.d │ │ │ ├── SDL_audio.dia │ │ │ ├── SDL_audiocvt.d │ │ │ ├── SDL_audiocvt.dia │ │ │ ├── SDL_audiotypecvt.d │ │ │ ├── SDL_audiotypecvt.dia │ │ │ ├── SDL_blendline.d │ │ │ ├── SDL_blendline.dia │ │ │ ├── SDL_blendpoint.d │ │ │ ├── SDL_blendpoint.dia │ │ │ ├── SDL_blendrect.d │ │ │ ├── SDL_blendrect.dia │ │ │ ├── SDL_blit.d │ │ │ ├── SDL_blit.dia │ │ │ ├── SDL_blit_0.d │ │ │ ├── SDL_blit_0.dia │ │ │ ├── SDL_blit_1.d │ │ │ ├── SDL_blit_1.dia │ │ │ ├── SDL_blit_A.d │ │ │ ├── SDL_blit_A.dia │ │ │ ├── SDL_blit_N.d │ │ │ ├── SDL_blit_N.dia │ │ │ ├── SDL_blit_auto.d │ │ │ ├── SDL_blit_auto.dia │ │ │ ├── SDL_blit_copy.d │ │ │ ├── SDL_blit_copy.dia │ │ │ ├── SDL_blit_slow.d │ │ │ ├── SDL_blit_slow.dia │ │ │ ├── SDL_bmp.d │ │ │ ├── SDL_bmp.dia │ │ │ ├── SDL_compat.d │ │ │ ├── SDL_compat.dia │ │ │ ├── SDL_coreaudio_iphone.d │ │ │ ├── SDL_coreaudio_iphone.dia │ │ │ ├── SDL_cpuinfo.d │ │ │ ├── SDL_cpuinfo.dia │ │ │ ├── SDL_drawline.d │ │ │ ├── SDL_drawline.dia │ │ │ ├── SDL_drawpoint.d │ │ │ ├── SDL_drawpoint.dia │ │ │ ├── SDL_dummyaudio.d │ │ │ ├── SDL_dummyaudio.dia │ │ │ ├── SDL_error.d │ │ │ ├── SDL_error.dia │ │ │ ├── SDL_events.d │ │ │ ├── SDL_events.dia │ │ │ ├── SDL_fatal.d │ │ │ ├── SDL_fatal.dia │ │ │ ├── SDL_fillrect.d │ │ │ ├── SDL_fillrect.dia │ │ │ ├── SDL_gamma.d │ │ │ ├── SDL_gamma.dia │ │ │ ├── SDL_getenv.d │ │ │ ├── SDL_getenv.dia │ │ │ ├── SDL_haptic.d │ │ │ ├── SDL_haptic.dia │ │ │ ├── SDL_iconv.d │ │ │ ├── SDL_iconv.dia │ │ │ ├── SDL_joystick.d │ │ │ ├── SDL_joystick.dia │ │ │ ├── SDL_keyboard.d │ │ │ ├── SDL_keyboard.dia │ │ │ ├── SDL_malloc.d │ │ │ ├── SDL_malloc.dia │ │ │ ├── SDL_mixer.d │ │ │ ├── SDL_mixer.dia │ │ │ ├── SDL_mixer_MMX.d │ │ │ ├── SDL_mixer_MMX.dia │ │ │ ├── SDL_mixer_MMX_VC.d │ │ │ ├── SDL_mixer_MMX_VC.dia │ │ │ ├── SDL_mixer_m68k.d │ │ │ ├── SDL_mixer_m68k.dia │ │ │ ├── SDL_mouse.d │ │ │ ├── SDL_mouse.dia │ │ │ ├── SDL_nullevents.d │ │ │ ├── SDL_nullevents.dia │ │ │ ├── SDL_nullrender.d │ │ │ ├── SDL_nullrender.dia │ │ │ ├── SDL_nullvideo.d │ │ │ ├── SDL_nullvideo.dia │ │ │ ├── SDL_pixels.d │ │ │ ├── SDL_pixels.dia │ │ │ ├── SDL_qsort.d │ │ │ ├── SDL_qsort.dia │ │ │ ├── SDL_quit.d │ │ │ ├── SDL_quit.dia │ │ │ ├── SDL_rect.d │ │ │ ├── SDL_rect.dia │ │ │ ├── SDL_renderer_gl.d │ │ │ ├── SDL_renderer_gl.dia │ │ │ ├── SDL_renderer_gles.d │ │ │ ├── SDL_renderer_gles.dia │ │ │ ├── SDL_renderer_sw.d │ │ │ ├── SDL_renderer_sw.dia │ │ │ ├── SDL_rwops.d │ │ │ ├── SDL_rwops.dia │ │ │ ├── SDL_stdlib.d │ │ │ ├── SDL_stdlib.dia │ │ │ ├── SDL_stretch.d │ │ │ ├── SDL_stretch.dia │ │ │ ├── SDL_string.d │ │ │ ├── SDL_string.dia │ │ │ ├── SDL_surface.d │ │ │ ├── SDL_surface.dia │ │ │ ├── SDL_syscond.d │ │ │ ├── SDL_syscond.dia │ │ │ ├── SDL_syshaptic.d │ │ │ ├── SDL_syshaptic.dia │ │ │ ├── SDL_sysjoystick.d │ │ │ ├── SDL_sysjoystick.dia │ │ │ ├── SDL_sysloadso-F80A3FD323F5A49.d │ │ │ ├── SDL_sysloadso-F80A3FD323F5A49.dia │ │ │ ├── SDL_sysloadso-FAFB3D7A87B09B5D.d │ │ │ ├── SDL_sysloadso-FAFB3D7A87B09B5D.dia │ │ │ ├── SDL_sysmutex.d │ │ │ ├── SDL_sysmutex.dia │ │ │ ├── SDL_syssem.d │ │ │ ├── SDL_syssem.dia │ │ │ ├── SDL_systhread.d │ │ │ ├── SDL_systhread.dia │ │ │ ├── SDL_systimer.d │ │ │ ├── SDL_systimer.dia │ │ │ ├── SDL_thread.d │ │ │ ├── SDL_thread.dia │ │ │ ├── SDL_timer.d │ │ │ ├── SDL_timer.dia │ │ │ ├── SDL_uikitappdelegate.d │ │ │ ├── SDL_uikitappdelegate.dia │ │ │ ├── SDL_uikitevents.d │ │ │ ├── SDL_uikitevents.dia │ │ │ ├── SDL_uikitopengles.d │ │ │ ├── SDL_uikitopengles.dia │ │ │ ├── SDL_uikitopenglview.d │ │ │ ├── SDL_uikitopenglview.dia │ │ │ ├── SDL_uikitvideo.d │ │ │ ├── SDL_uikitvideo.dia │ │ │ ├── SDL_uikitview.d │ │ │ ├── SDL_uikitview.dia │ │ │ ├── SDL_uikitwindow.d │ │ │ ├── SDL_uikitwindow.dia │ │ │ ├── SDL_video.d │ │ │ ├── SDL_video.dia │ │ │ ├── SDL_wave.d │ │ │ ├── SDL_wave.dia │ │ │ ├── SDL_windowevents.d │ │ │ ├── SDL_windowevents.dia │ │ │ ├── SDL_yuv_mmx.d │ │ │ ├── SDL_yuv_mmx.dia │ │ │ ├── SDL_yuv_sw.d │ │ │ ├── SDL_yuv_sw.dia │ │ │ ├── adler32.d │ │ │ ├── adler32.dia │ │ │ ├── bc.d │ │ │ ├── bc.dia │ │ │ ├── blocksort.d │ │ │ ├── blocksort.dia │ │ │ ├── buffer.d │ │ │ ├── buffer.dia │ │ │ ├── bzlib.d │ │ │ ├── bzlib.dia │ │ │ ├── cheat.d │ │ │ ├── cheat.dia │ │ │ ├── compare_core.d │ │ │ ├── compare_core.dia │ │ │ ├── compress.d │ │ │ ├── compress.dia │ │ │ ├── config.d │ │ │ ├── config.dia │ │ │ ├── cop0.d │ │ │ ├── cop0.dia │ │ │ ├── cop1.d │ │ │ ├── cop1.dia │ │ │ ├── cop1_d.d │ │ │ ├── cop1_d.dia │ │ │ ├── cop1_l.d │ │ │ ├── cop1_l.dia │ │ │ ├── cop1_s.d │ │ │ ├── cop1_s.dia │ │ │ ├── cop1_w.d │ │ │ ├── cop1_w.dia │ │ │ ├── crctable.d │ │ │ ├── crctable.dia │ │ │ ├── decompress.d │ │ │ ├── decompress.dia │ │ │ ├── dma.d │ │ │ ├── dma.dia │ │ │ ├── empty_dynarec.d │ │ │ ├── empty_dynarec.dia │ │ │ ├── exception.d │ │ │ ├── exception.dia │ │ │ ├── flashram.d │ │ │ ├── flashram.dia │ │ │ ├── huffman.d │ │ │ ├── huffman.dia │ │ │ ├── interupt.d │ │ │ ├── interupt.dia │ │ │ ├── io.d │ │ │ ├── io.dia │ │ │ ├── ioapi.d │ │ │ ├── ioapi.dia │ │ │ ├── jumphack.d │ │ │ ├── jumphack.dia │ │ │ ├── lirc.d │ │ │ ├── lirc.dia │ │ │ ├── main-9BCDA3A93D90885B.d │ │ │ ├── main-9BCDA3A93D90885B.dia │ │ │ ├── main-D61B9976DE81229C.d │ │ │ ├── main-D61B9976DE81229C.dia │ │ │ ├── main-D9AB13F31477C950.d │ │ │ ├── main-D9AB13F31477C950.dia │ │ │ ├── md5.d │ │ │ ├── md5.dia │ │ │ ├── memory.d │ │ │ ├── memory.dia │ │ │ ├── n64ios_arm.d │ │ │ ├── n64ios_arm.dia │ │ │ ├── new_dynarec.d │ │ │ ├── new_dynarec.dia │ │ │ ├── pif.d │ │ │ ├── pif.dia │ │ │ ├── plugin.d │ │ │ ├── plugin.dia │ │ │ ├── profile.d │ │ │ ├── profile.dia │ │ │ ├── pure_interp.d │ │ │ ├── pure_interp.dia │ │ │ ├── r4300.d │ │ │ ├── r4300.dia │ │ │ ├── randtable.d │ │ │ ├── randtable.dia │ │ │ ├── recomp.d │ │ │ ├── recomp.dia │ │ │ ├── regimm.d │ │ │ ├── regimm.dia │ │ │ ├── rom.d │ │ │ ├── rom.dia │ │ │ ├── romcache.d │ │ │ ├── romcache.dia │ │ │ ├── savestates.d │ │ │ ├── savestates.dia │ │ │ ├── special.d │ │ │ ├── special.dia │ │ │ ├── tlb-4E1D06EC3C212665.d │ │ │ ├── tlb-4E1D06EC3C212665.dia │ │ │ ├── tlb-A8A3E2BF3379766A.d │ │ │ ├── tlb-A8A3E2BF3379766A.dia │ │ │ ├── translate.d │ │ │ ├── translate.dia │ │ │ ├── unzip.d │ │ │ ├── unzip.dia │ │ │ ├── util.d │ │ │ └── util.dia │ │ ├── build-state.dat │ │ └── build-state~.dat ├── NowPlayingController.h ├── NowPlayingController.m ├── OptionsController.h ├── OptionsController.m ├── RecentController.h ├── RecentController.m ├── RomController.h ├── RomController.m ├── SOApplication.h ├── SOApplication.m ├── SaveStatesController.h ├── SaveStatesController.m ├── ShoutOutAppDelegate.h ├── ShoutOutAppDelegate.m ├── TabBar.h ├── TabBar.m ├── WebBrowserViewController.h ├── WebBrowserViewController.m ├── helpers.h ├── helpers.m ├── include │ ├── SDL │ │ ├── SDL.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_compat.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.default │ │ ├── SDL_config.h.generated │ │ ├── SDL_config.h.in │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_nintendods.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_win32.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_haptic.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keysym.h │ │ ├── SDL_loadso.h │ │ ├── SDL_main.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengles.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ ├── close_code.h │ │ └── doxyfile │ ├── btstack │ │ ├── btstack.h │ │ ├── config.h │ │ ├── hal_cpu.h │ │ ├── hal_tick.h │ │ ├── hal_uart_dma.h │ │ ├── hci_cmds.h │ │ ├── linked_list.h │ │ ├── memory_pool.h │ │ ├── run_loop.h │ │ ├── sdp_util.h │ │ ├── utils.h │ │ └── version.h │ └── freetype │ │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── format │ │ └── text-base │ │ │ ├── freetype.h.svn-base │ │ │ ├── ftadvanc.h.svn-base │ │ │ ├── ftbbox.h.svn-base │ │ │ ├── ftbdf.h.svn-base │ │ │ ├── ftbitmap.h.svn-base │ │ │ ├── ftcache.h.svn-base │ │ │ ├── ftchapters.h.svn-base │ │ │ ├── ftcid.h.svn-base │ │ │ ├── fterrdef.h.svn-base │ │ │ ├── fterrors.h.svn-base │ │ │ ├── ftgasp.h.svn-base │ │ │ ├── ftglyph.h.svn-base │ │ │ ├── ftgxval.h.svn-base │ │ │ ├── ftgzip.h.svn-base │ │ │ ├── ftimage.h.svn-base │ │ │ ├── ftincrem.h.svn-base │ │ │ ├── ftlcdfil.h.svn-base │ │ │ ├── ftlist.h.svn-base │ │ │ ├── ftlzw.h.svn-base │ │ │ ├── ftmac.h.svn-base │ │ │ ├── ftmm.h.svn-base │ │ │ ├── ftmodapi.h.svn-base │ │ │ ├── ftmoderr.h.svn-base │ │ │ ├── ftotval.h.svn-base │ │ │ ├── ftoutln.h.svn-base │ │ │ ├── ftpfr.h.svn-base │ │ │ ├── ftrender.h.svn-base │ │ │ ├── ftsizes.h.svn-base │ │ │ ├── ftsnames.h.svn-base │ │ │ ├── ftstroke.h.svn-base │ │ │ ├── ftsynth.h.svn-base │ │ │ ├── ftsystem.h.svn-base │ │ │ ├── fttrigon.h.svn-base │ │ │ ├── fttypes.h.svn-base │ │ │ ├── ftwinfnt.h.svn-base │ │ │ ├── ftxf86.h.svn-base │ │ │ ├── t1tables.h.svn-base │ │ │ ├── ttnameid.h.svn-base │ │ │ ├── tttables.h.svn-base │ │ │ ├── tttags.h.svn-base │ │ │ └── ttunpat.h.svn-base │ │ ├── config │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── format │ │ │ └── text-base │ │ │ │ ├── ftconfig.h.svn-base │ │ │ │ ├── ftheader.h.svn-base │ │ │ │ ├── ftmodule.h.svn-base │ │ │ │ ├── ftoption.h.svn-base │ │ │ │ └── ftstdlib.h.svn-base │ │ ├── ftconfig.h │ │ ├── ftheader.h │ │ ├── ftmodule.h │ │ ├── ftoption.h │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── ftxf86.h │ │ ├── internal │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── format │ │ │ └── text-base │ │ │ │ ├── autohint.h.svn-base │ │ │ │ ├── ftcalc.h.svn-base │ │ │ │ ├── ftdebug.h.svn-base │ │ │ │ ├── ftdriver.h.svn-base │ │ │ │ ├── ftgloadr.h.svn-base │ │ │ │ ├── ftmemory.h.svn-base │ │ │ │ ├── ftobjs.h.svn-base │ │ │ │ ├── ftrfork.h.svn-base │ │ │ │ ├── ftserv.h.svn-base │ │ │ │ ├── ftstream.h.svn-base │ │ │ │ ├── fttrace.h.svn-base │ │ │ │ ├── ftvalid.h.svn-base │ │ │ │ ├── internal.h.svn-base │ │ │ │ ├── pcftypes.h.svn-base │ │ │ │ ├── psaux.h.svn-base │ │ │ │ ├── pshints.h.svn-base │ │ │ │ ├── sfnt.h.svn-base │ │ │ │ ├── t1types.h.svn-base │ │ │ │ └── tttypes.h.svn-base │ │ ├── autohint.h │ │ ├── ftcalc.h │ │ ├── ftdebug.h │ │ ├── ftdriver.h │ │ ├── ftgloadr.h │ │ ├── ftmemory.h │ │ ├── ftobjs.h │ │ ├── ftrfork.h │ │ ├── ftserv.h │ │ ├── ftstream.h │ │ ├── fttrace.h │ │ ├── ftvalid.h │ │ ├── internal.h │ │ ├── pcftypes.h │ │ ├── psaux.h │ │ ├── pshints.h │ │ ├── services │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ └── text-base │ │ │ │ │ ├── svbdf.h.svn-base │ │ │ │ │ ├── svcid.h.svn-base │ │ │ │ │ ├── svgldict.h.svn-base │ │ │ │ │ ├── svgxval.h.svn-base │ │ │ │ │ ├── svkern.h.svn-base │ │ │ │ │ ├── svmm.h.svn-base │ │ │ │ │ ├── svotval.h.svn-base │ │ │ │ │ ├── svpfr.h.svn-base │ │ │ │ │ ├── svpostnm.h.svn-base │ │ │ │ │ ├── svpscmap.h.svn-base │ │ │ │ │ ├── svpsinfo.h.svn-base │ │ │ │ │ ├── svsfnt.h.svn-base │ │ │ │ │ ├── svttcmap.h.svn-base │ │ │ │ │ ├── svtteng.h.svn-base │ │ │ │ │ ├── svttglyf.h.svn-base │ │ │ │ │ ├── svwinfnt.h.svn-base │ │ │ │ │ └── svxf86nm.h.svn-base │ │ │ ├── svbdf.h │ │ │ ├── svcid.h │ │ │ ├── svgldict.h │ │ │ ├── svgxval.h │ │ │ ├── svkern.h │ │ │ ├── svmm.h │ │ │ ├── svotval.h │ │ │ ├── svpfr.h │ │ │ ├── svpostnm.h │ │ │ ├── svpscmap.h │ │ │ ├── svpsinfo.h │ │ │ ├── svsfnt.h │ │ │ ├── svttcmap.h │ │ │ ├── svtteng.h │ │ │ ├── svttglyf.h │ │ │ ├── svwinfnt.h │ │ │ └── svxf86nm.h │ │ ├── sfnt.h │ │ ├── t1types.h │ │ └── tttypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ ├── tttags.h │ │ └── ttunpat.h ├── main.m ├── n64iphone-Info.plist ├── n64iphone-Prefix.pch ├── res │ ├── Default.png │ ├── Info.plist │ ├── controller_fs0.png │ ├── controller_fs0.txt │ ├── controller_fs1.png │ ├── controller_fs1.txt │ ├── controller_fs2.png │ ├── controller_fs2.txt │ ├── controller_fs3.png │ ├── controller_fs3.txt │ ├── controller_fs4.png │ ├── controller_fs4.txt │ ├── controller_fs5.png │ ├── controller_fs5.txt │ ├── controller_hs0.png │ ├── controller_hs0.txt │ ├── controller_hs1.png │ ├── controller_hs1.txt │ ├── controller_hs2.png │ ├── controller_hs2.txt │ ├── controller_hs3.png │ ├── controller_hs3.txt │ ├── controller_hs4.png │ ├── controller_hs4.txt │ ├── controller_hs5.png │ ├── controller_hs5.txt │ ├── genres.png │ ├── icon.png │ └── nowplaying.png ├── src │ ├── Mupen64Plus │ │ ├── LICENSES │ │ ├── Makefile │ │ ├── Mupen64Plus.xcodeproj │ │ │ └── project.pbxproj │ │ ├── README │ │ ├── RELEASE │ │ ├── TODO │ │ ├── bin │ │ │ ├── dummyaudio.dylib │ │ │ ├── dummyinput.dylib │ │ │ ├── dummyvideo.dylib │ │ │ ├── gles2n64.dylib │ │ │ ├── jttl_audio.dylib │ │ │ ├── mupen64_hle_rsp_azimer.dylib │ │ │ └── mupen64plus │ │ ├── blight_input │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── Input_1.1.h │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── README.mupen64 │ │ │ ├── SDL_ttf.c │ │ │ ├── SDL_ttf.h │ │ │ ├── arial.ttf.h │ │ │ ├── blight_input.so │ │ │ ├── configdialog_sdl.c │ │ │ ├── configdialog_sdl.h │ │ │ ├── font │ │ │ │ ├── arial-license.txt │ │ │ │ └── arial.ttf │ │ │ ├── pad.c │ │ │ ├── pad.h │ │ │ ├── plugin.c │ │ │ ├── plugin.h │ │ │ ├── ttftoh.c │ │ │ └── winuser.h │ │ ├── config │ │ │ ├── Glide64.ini │ │ │ ├── RiceVideo.cfg │ │ │ ├── RiceVideoLinux.ini │ │ │ ├── blight_input.conf │ │ │ ├── glN64.conf │ │ │ ├── gles2n64.conf │ │ │ ├── jttl_audio.conf │ │ │ └── mupen64plus.conf │ │ ├── debugger │ │ │ ├── breakpoints.c │ │ │ ├── breakpoints.h │ │ │ ├── debugger.c │ │ │ ├── debugger.h │ │ │ ├── decoder.c │ │ │ ├── decoder.h │ │ │ ├── memory.c │ │ │ ├── memory.h │ │ │ ├── opprintf.c │ │ │ ├── opprintf.h │ │ │ └── types.h │ │ ├── doc │ │ │ ├── Audio_1.1.h │ │ │ ├── Audio_1.2.h │ │ │ ├── Graphics_1.3.h │ │ │ ├── HiRezTexture.txt │ │ │ ├── Input_1.1.h │ │ │ ├── Rsp_1.1.h │ │ │ ├── bzip2-license │ │ │ ├── font-license │ │ │ ├── gpl-license │ │ │ ├── lgpl-license │ │ │ └── mupen64plus.1.gz │ │ ├── dummy_audio │ │ │ ├── Audio_1.1.h │ │ │ ├── Makefile │ │ │ ├── audio.c │ │ │ ├── build │ │ │ │ └── dummy_audio.build │ │ │ │ │ └── Debug-iphoneos │ │ │ │ │ └── dummy_audio.build │ │ │ │ │ ├── build-state.dat │ │ │ │ │ ├── build-state~.dat │ │ │ │ │ ├── dummy_audio.dep │ │ │ │ │ └── dummy_audio~.dep │ │ │ ├── dummy_audio.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── dummyaudio.dylib │ │ │ └── dummyaudio.so │ │ ├── dummy_input │ │ │ ├── Input_1.1.h │ │ │ ├── Makefile │ │ │ ├── build │ │ │ │ └── dummy_input.build │ │ │ │ │ └── Debug-iphoneos │ │ │ │ │ └── dummy_input.build │ │ │ │ │ ├── build-state.dat │ │ │ │ │ ├── build-state~.dat │ │ │ │ │ ├── dummy_input.dep │ │ │ │ │ └── dummy_input~.dep │ │ │ ├── dummy_input.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── dummyinput.dylib │ │ │ ├── input.c │ │ │ ├── input.h │ │ │ └── makewin32.bat │ │ ├── dummy_video │ │ │ ├── Graphics_1.3.h │ │ │ ├── Makefile │ │ │ ├── build │ │ │ │ └── dummy_video.build │ │ │ │ │ └── Debug-iphoneos │ │ │ │ │ └── dummy_video.build │ │ │ │ │ ├── build-state.dat │ │ │ │ │ ├── build-state~.dat │ │ │ │ │ ├── dummy_video.dep │ │ │ │ │ └── dummy_video~.dep │ │ │ ├── dummy_video.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── dummyvideo.dylib │ │ │ ├── dummyvideo.so │ │ │ ├── video.cpp │ │ │ └── video.h │ │ ├── fonts │ │ │ └── font.ttf │ │ ├── glN64 │ │ │ ├── 2xSAI.cpp │ │ │ ├── 2xSAI.h │ │ │ ├── 3DMath.h │ │ │ ├── CRC.cpp │ │ │ ├── CRC.h │ │ │ ├── Combiner.cpp │ │ │ ├── Combiner.h │ │ │ ├── Config.h │ │ │ ├── Config_gtk2.cpp │ │ │ ├── Config_nogui.cpp │ │ │ ├── Config_qt4.cpp │ │ │ ├── Debug.h │ │ │ ├── DepthBuffer.cpp │ │ │ ├── DepthBuffer.h │ │ │ ├── F3D.cpp │ │ │ ├── F3D.h │ │ │ ├── F3DDKR.cpp │ │ │ ├── F3DDKR.h │ │ │ ├── F3DEX.cpp │ │ │ ├── F3DEX.h │ │ │ ├── F3DEX2.cpp │ │ │ ├── F3DEX2.h │ │ │ ├── F3DPD.cpp │ │ │ ├── F3DPD.h │ │ │ ├── F3DWRUS.cpp │ │ │ ├── F3DWRUS.h │ │ │ ├── FrameBuffer.cpp │ │ │ ├── FrameBuffer.h │ │ │ ├── GBI.cpp │ │ │ ├── GBI.h │ │ │ ├── L3D.cpp │ │ │ ├── L3D.h │ │ │ ├── L3DEX.cpp │ │ │ ├── L3DEX.h │ │ │ ├── L3DEX2.cpp │ │ │ ├── L3DEX2.h │ │ │ ├── Makefile │ │ │ ├── N64.cpp │ │ │ ├── N64.h │ │ │ ├── NV_register_combiners.cpp │ │ │ ├── NV_register_combiners.h │ │ │ ├── OpenGL.cpp │ │ │ ├── OpenGL.h │ │ │ ├── RDP.cpp │ │ │ ├── RDP.h │ │ │ ├── RSP.cpp │ │ │ ├── RSP.h │ │ │ ├── S2DEX.cpp │ │ │ ├── S2DEX.h │ │ │ ├── S2DEX2.cpp │ │ │ ├── S2DEX2.h │ │ │ ├── Textures.cpp │ │ │ ├── Textures.h │ │ │ ├── Types.h │ │ │ ├── VI.cpp │ │ │ ├── VI.h │ │ │ ├── Zilmar GFX 1.3.h │ │ │ ├── convert.h │ │ │ ├── gDP.cpp │ │ │ ├── gDP.h │ │ │ ├── gSP.cpp │ │ │ ├── gSP.h │ │ │ ├── glN64.cpp │ │ │ ├── glN64.h │ │ │ ├── glN64.so │ │ │ ├── gln64config.ui │ │ │ ├── texture_env.cpp │ │ │ ├── texture_env.h │ │ │ ├── texture_env_combine.cpp │ │ │ └── texture_env_combine.h │ │ ├── glide64 │ │ │ ├── 3dmath.cpp │ │ │ ├── 3dmath.h │ │ │ ├── AUTHORS │ │ │ ├── CRC.cpp │ │ │ ├── CRC.h │ │ │ ├── Changes.txt │ │ │ ├── Combine.cpp │ │ │ ├── Combine.h │ │ │ ├── Config_gtk2.cpp │ │ │ ├── Debugger.cpp │ │ │ ├── Debugger.h │ │ │ ├── DepthBufferRender.cpp │ │ │ ├── DepthBufferRender.h │ │ │ ├── Gfx1.3.h │ │ │ ├── INSTALL │ │ │ ├── Ini.cpp │ │ │ ├── Ini.h │ │ │ ├── LICENSES │ │ │ ├── Main.cpp │ │ │ ├── Makefile │ │ │ ├── MiClWr16b.h │ │ │ ├── MiClWr8b.h │ │ │ ├── TexBuffer.cpp │ │ │ ├── TexBuffer.h │ │ │ ├── TexCache.cpp │ │ │ ├── TexCache.h │ │ │ ├── TexConv.h │ │ │ ├── TexLoad.h │ │ │ ├── TexLoad16b.h │ │ │ ├── TexLoad32b.h │ │ │ ├── TexLoad4b.h │ │ │ ├── TexLoad8b.h │ │ │ ├── TexMod.h │ │ │ ├── TexModCI.h │ │ │ ├── Tmem.h │ │ │ ├── Ucode00.h │ │ │ ├── UcodeFB.h │ │ │ ├── Util.cpp │ │ │ ├── Util.h │ │ │ ├── compiletex.c │ │ │ ├── config.h │ │ │ ├── config_qt4.cpp │ │ │ ├── configdialog_qt4.cpp │ │ │ ├── configdialog_qt4.h │ │ │ ├── cursor.tex │ │ │ ├── font.tex │ │ │ ├── glide64config.ui │ │ │ ├── gpl.txt │ │ │ ├── icons │ │ │ │ ├── messagebox-error.xpm │ │ │ │ ├── messagebox-info.xpm │ │ │ │ ├── messagebox-quest.xpm │ │ │ │ └── messagebox-warn.xpm │ │ │ ├── messagebox.h │ │ │ ├── messagebox_gtk2.c │ │ │ ├── messagebox_qt4.cpp │ │ │ ├── rdp.cpp │ │ │ ├── rdp.h │ │ │ ├── support.h │ │ │ ├── support_gtk2.c │ │ │ ├── ucode.h │ │ │ ├── ucode01.h │ │ │ ├── ucode02.h │ │ │ ├── ucode03.h │ │ │ ├── ucode04.h │ │ │ ├── ucode05.h │ │ │ ├── ucode06.h │ │ │ ├── ucode07.h │ │ │ ├── ucode08.h │ │ │ ├── winlnxdefs.h │ │ │ └── wrapper │ │ │ │ ├── 2xsai.cpp │ │ │ │ ├── 2xsai.h │ │ │ │ ├── 3dfx.h │ │ │ │ ├── COPYING │ │ │ │ ├── combiner.cpp │ │ │ │ ├── config.cpp │ │ │ │ ├── filter.cpp │ │ │ │ ├── g3ext.h │ │ │ │ ├── geometry.cpp │ │ │ │ ├── glide.h │ │ │ │ ├── glidesys.h │ │ │ │ ├── glideutl.h │ │ │ │ ├── hq2x.cpp │ │ │ │ ├── hq4x.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── main.h │ │ │ │ ├── sst1vid.h │ │ │ │ └── textures.cpp │ │ ├── iN64iOS │ │ │ ├── iN64iOS-Prefix.pch │ │ │ ├── iN64iOS.h │ │ │ └── iN64iOS.m │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ ├── application-exit.png │ │ │ │ ├── audio-card.png │ │ │ │ ├── cpu.png │ │ │ │ ├── document-open.png │ │ │ │ ├── document-properties.png │ │ │ │ ├── document-revert.png │ │ │ │ ├── document-save-all.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── edit-delete.png │ │ │ │ ├── gtk-about.png │ │ │ │ ├── input-gaming.png │ │ │ │ ├── media-playback-pause.png │ │ │ │ ├── media-playback-start.png │ │ │ │ ├── media-playback-stop.png │ │ │ │ ├── mupen64cart.png │ │ │ │ ├── mupen64plus.png │ │ │ │ ├── preferences-system.png │ │ │ │ ├── star.png │ │ │ │ ├── video-display.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ ├── view-refresh.png │ │ │ │ └── window-close.png │ │ │ ├── 22x22 │ │ │ │ ├── document-open.png │ │ │ │ ├── document-properties.png │ │ │ │ ├── document-revert.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── edit-delete.png │ │ │ │ ├── media-playback-pause.png │ │ │ │ ├── media-playback-start.png │ │ │ │ ├── media-playback-stop.png │ │ │ │ ├── mupen64cart.png │ │ │ │ ├── preferences-system.png │ │ │ │ ├── star.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ └── view-refresh.png │ │ │ ├── 32x32 │ │ │ │ ├── audio-card.png │ │ │ │ ├── cpu.png │ │ │ │ ├── dialog-error.png │ │ │ │ ├── dialog-question.png │ │ │ │ ├── dialog-warning.png │ │ │ │ ├── document-open.png │ │ │ │ ├── document-properties.png │ │ │ │ ├── document-revert.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── edit-delete.png │ │ │ │ ├── input-gaming.png │ │ │ │ ├── media-playback-pause.png │ │ │ │ ├── media-playback-start.png │ │ │ │ ├── media-playback-stop.png │ │ │ │ ├── mupen64cart.png │ │ │ │ ├── mupen64plus.png │ │ │ │ ├── preferences-system.png │ │ │ │ ├── star.png │ │ │ │ ├── video-display.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ └── view-refresh.png │ │ │ ├── LICENSES │ │ │ ├── applications-utilities.png │ │ │ ├── australia.png │ │ │ ├── europe.png │ │ │ ├── france.png │ │ │ ├── germany.png │ │ │ ├── italy.png │ │ │ ├── japan.png │ │ │ ├── japanusa.png │ │ │ ├── mupen64cart.svg │ │ │ ├── mupen64logo.png │ │ │ ├── mupen64logo.svg │ │ │ ├── mupen64plus-large.png │ │ │ ├── mupen64plus.svg │ │ │ ├── preferences-system-network.png │ │ │ ├── preferences-system.png │ │ │ ├── spain.png │ │ │ └── usa.png │ │ ├── install.sh │ │ ├── jttl_audio │ │ │ ├── Audio_1.2.h │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── build │ │ │ │ └── jttl_audio.build │ │ │ │ │ └── Debug-iphoneos │ │ │ │ │ └── jttl_audio.build │ │ │ │ │ ├── build-state.dat │ │ │ │ │ ├── build-state~.dat │ │ │ │ │ ├── jttl_audio.dep │ │ │ │ │ └── jttl_audio~.dep │ │ │ ├── gui.h │ │ │ ├── gui_gtk2.c │ │ │ ├── gui_gtk2.h │ │ │ ├── gui_none.c │ │ │ ├── jttl_audio.dylib │ │ │ ├── jttl_audio.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── volume.c │ │ │ └── volume.h │ │ ├── lang │ │ │ └── english.lng │ │ ├── main │ │ │ ├── 7zip │ │ │ │ ├── 7zAlloc.c │ │ │ │ ├── 7zAlloc.h │ │ │ │ ├── 7zBuffer.c │ │ │ │ ├── 7zBuffer.h │ │ │ │ ├── 7zCrc.c │ │ │ │ ├── 7zCrc.h │ │ │ │ ├── 7zDecode.c │ │ │ │ ├── 7zDecode.h │ │ │ │ ├── 7zExtract.c │ │ │ │ ├── 7zExtract.h │ │ │ │ ├── 7zHeader.c │ │ │ │ ├── 7zHeader.h │ │ │ │ ├── 7zIn.c │ │ │ │ ├── 7zIn.h │ │ │ │ ├── 7zItem.c │ │ │ │ ├── 7zItem.h │ │ │ │ ├── 7zMain.c │ │ │ │ ├── 7zMain.h │ │ │ │ ├── 7zMethodID.h │ │ │ │ ├── BranchTypes.h │ │ │ │ ├── BranchX86.c │ │ │ │ ├── BranchX86.h │ │ │ │ ├── BranchX86_2.c │ │ │ │ ├── BranchX86_2.h │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ └── Types.h │ │ │ ├── adler32.c │ │ │ ├── bzip2 │ │ │ │ ├── blocksort.c │ │ │ │ ├── bzlib.c │ │ │ │ ├── bzlib.h │ │ │ │ ├── bzlib_private.h │ │ │ │ ├── compress.c │ │ │ │ ├── crctable.c │ │ │ │ ├── decompress.c │ │ │ │ ├── huffman.c │ │ │ │ └── randtable.c │ │ │ ├── cheat.c │ │ │ ├── cheat.h │ │ │ ├── config.c │ │ │ ├── config.h │ │ │ ├── gui.h │ │ │ ├── gui_gtk │ │ │ │ ├── ChangeLog │ │ │ │ ├── aboutdialog.c │ │ │ │ ├── aboutdialog.h │ │ │ │ ├── cheatdialog.c │ │ │ │ ├── cheatdialog.h │ │ │ │ ├── configdialog.c │ │ │ │ ├── configdialog.h │ │ │ │ ├── debugger │ │ │ │ │ ├── breakpoints.c │ │ │ │ │ ├── breakpoints.h │ │ │ │ │ ├── debugger.c │ │ │ │ │ ├── debugger.h │ │ │ │ │ ├── desasm.c │ │ │ │ │ ├── desasm.h │ │ │ │ │ ├── memedit.c │ │ │ │ │ ├── memedit.h │ │ │ │ │ ├── regAI.c │ │ │ │ │ ├── regAI.h │ │ │ │ │ ├── regCop0.c │ │ │ │ │ ├── regCop0.h │ │ │ │ │ ├── regCop1.c │ │ │ │ │ ├── regCop1.h │ │ │ │ │ ├── regGPR.c │ │ │ │ │ ├── regGPR.h │ │ │ │ │ ├── regPI.c │ │ │ │ │ ├── regPI.h │ │ │ │ │ ├── regRI.c │ │ │ │ │ ├── regRI.h │ │ │ │ │ ├── regSI.c │ │ │ │ │ ├── regSI.h │ │ │ │ │ ├── regSpecial.c │ │ │ │ │ ├── regSpecial.h │ │ │ │ │ ├── regTLB.c │ │ │ │ │ ├── regTLB.h │ │ │ │ │ ├── regVI.c │ │ │ │ │ ├── regVI.h │ │ │ │ │ ├── registers.c │ │ │ │ │ ├── registers.h │ │ │ │ │ ├── ui_clist_edit.c │ │ │ │ │ ├── ui_clist_edit.h │ │ │ │ │ ├── ui_disasm_list.c │ │ │ │ │ ├── ui_disasm_list.h │ │ │ │ │ ├── varlist.c │ │ │ │ │ └── varlist.h │ │ │ │ ├── icontheme.c │ │ │ │ ├── icontheme.h │ │ │ │ ├── main_gtk.c │ │ │ │ ├── main_gtk.h │ │ │ │ ├── rombrowser.c │ │ │ │ ├── rombrowser.h │ │ │ │ ├── romproperties.c │ │ │ │ └── romproperties.h │ │ │ ├── gui_qt4 │ │ │ │ ├── globals.cpp │ │ │ │ ├── globals.h │ │ │ │ ├── gui_qt4.pro │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwidget.cpp │ │ │ │ ├── mainwidget.h │ │ │ │ ├── mainwidget.ui │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ ├── mainwindow.ui │ │ │ │ ├── romdelegate.cpp │ │ │ │ ├── romdelegate.h │ │ │ │ ├── romdirectorieslistwidget.cpp │ │ │ │ ├── romdirectorieslistwidget.h │ │ │ │ ├── romdirectorieslistwidget.ui │ │ │ │ ├── rominfodialog.cpp │ │ │ │ ├── rominfodialog.h │ │ │ │ ├── rominfodialog.ui │ │ │ │ ├── rommodel.cpp │ │ │ │ ├── rommodel.h │ │ │ │ ├── settingsdialog.cpp │ │ │ │ ├── settingsdialog.h │ │ │ │ ├── settingsdialog.ui │ │ │ │ ├── starlabel.cpp │ │ │ │ ├── starlabel.h │ │ │ │ ├── translate.cpp │ │ │ │ └── winuser.h │ │ │ ├── lirc.c │ │ │ ├── lirc.h │ │ │ ├── lzma │ │ │ │ ├── buffer.c │ │ │ │ ├── io.c │ │ │ │ ├── lzmadec.h │ │ │ │ ├── main.c │ │ │ │ └── private.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── plugin.c │ │ │ ├── plugin.h │ │ │ ├── rom.c │ │ │ ├── rom.h │ │ │ ├── romcache.c │ │ │ ├── romcache.h │ │ │ ├── savestates.c │ │ │ ├── savestates.h │ │ │ ├── translate.c │ │ │ ├── translate.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── version.h │ │ │ ├── version.template │ │ │ ├── winlnxdefs.h │ │ │ └── zip │ │ │ │ ├── crypt.h │ │ │ │ ├── ioapi.c │ │ │ │ ├── ioapi.h │ │ │ │ ├── unzip.c │ │ │ │ └── unzip.h │ │ ├── memory │ │ │ ├── dma.c │ │ │ ├── dma.h │ │ │ ├── flashram.c │ │ │ ├── flashram.h │ │ │ ├── memory.c │ │ │ ├── memory.h │ │ │ ├── pif.c │ │ │ ├── pif.h │ │ │ ├── pif2.h │ │ │ ├── tlb.c │ │ │ └── tlb.h │ │ ├── mupen64_input │ │ │ ├── Controller_1.1.h │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── mupen64plus.desktop.in │ │ ├── mupen64plus.ini │ │ ├── opengl │ │ │ ├── OGLFT.cpp │ │ │ ├── OGLFT.h │ │ │ ├── osd.cpp │ │ │ ├── osd.h │ │ │ ├── screenshot.cpp │ │ │ └── screenshot.h │ │ ├── pre.mk │ │ ├── pre.mk.win32 │ │ ├── r4300 │ │ │ ├── bc.c │ │ │ ├── compare_core.c │ │ │ ├── cop0.c │ │ │ ├── cop1.c │ │ │ ├── cop1_d.c │ │ │ ├── cop1_l.c │ │ │ ├── cop1_s.c │ │ │ ├── cop1_w.c │ │ │ ├── empty_dynarec.c │ │ │ ├── exception.c │ │ │ ├── exception.h │ │ │ ├── interupt.c │ │ │ ├── interupt.h │ │ │ ├── macros.h │ │ │ ├── new_dynarec │ │ │ │ ├── assem_arm.c │ │ │ │ ├── assem_arm.h │ │ │ │ ├── assem_x64.c │ │ │ │ ├── assem_x64.h │ │ │ │ ├── assem_x86.c │ │ │ │ ├── assem_x86.h │ │ │ │ ├── linkage_arm.s │ │ │ │ ├── linkage_x86.s │ │ │ │ ├── linkage_x86_64.s │ │ │ │ ├── new_dynarec.c │ │ │ │ └── new_dynarec.h │ │ │ ├── ops.h │ │ │ ├── profile.c │ │ │ ├── pure_interp.c │ │ │ ├── r4300.c │ │ │ ├── r4300.h │ │ │ ├── recomp.c │ │ │ ├── recomp.h │ │ │ ├── recomph.h │ │ │ ├── regimm.c │ │ │ ├── special.c │ │ │ ├── tlb.c │ │ │ ├── x86 │ │ │ │ ├── assemble.c │ │ │ │ ├── assemble.h │ │ │ │ ├── debug.c │ │ │ │ ├── gbc.c │ │ │ │ ├── gcop0.c │ │ │ │ ├── gcop1.c │ │ │ │ ├── gcop1_d.c │ │ │ │ ├── gcop1_l.c │ │ │ │ ├── gcop1_s.c │ │ │ │ ├── gcop1_w.c │ │ │ │ ├── gr4300.c │ │ │ │ ├── gregimm.c │ │ │ │ ├── gspecial.c │ │ │ │ ├── gtlb.c │ │ │ │ ├── interpret.h │ │ │ │ ├── regcache.c │ │ │ │ ├── regcache.h │ │ │ │ └── rjump.c │ │ │ └── x86_64 │ │ │ │ ├── assemble.c │ │ │ │ ├── assemble.h │ │ │ │ ├── debug.c │ │ │ │ ├── gbc.c │ │ │ │ ├── gcop0.c │ │ │ │ ├── gcop1.c │ │ │ │ ├── gcop1_d.c │ │ │ │ ├── gcop1_l.c │ │ │ │ ├── gcop1_s.c │ │ │ │ ├── gcop1_w.c │ │ │ │ ├── gr4300.c │ │ │ │ ├── gregimm.c │ │ │ │ ├── gspecial.c │ │ │ │ ├── gtlb.c │ │ │ │ ├── interpret.h │ │ │ │ ├── regcache.c │ │ │ │ ├── regcache.h │ │ │ │ └── rjump.c │ │ ├── release.mk │ │ ├── rice_video │ │ │ ├── CNvTNTCombiner.cpp │ │ │ ├── CNvTNTCombiner.h │ │ │ ├── COLOR.h │ │ │ ├── CSortedList.h │ │ │ ├── Combiner.cpp │ │ │ ├── Combiner.h │ │ │ ├── CombinerDefs.h │ │ │ ├── CombinerTable.cpp │ │ │ ├── Config.cpp │ │ │ ├── Config.h │ │ │ ├── ConvertImage.cpp │ │ │ ├── ConvertImage.h │ │ │ ├── ConvertImage16.cpp │ │ │ ├── CritSect.h │ │ │ ├── Debugger.cpp │ │ │ ├── Debugger.h │ │ │ ├── DecodedMux.cpp │ │ │ ├── DecodedMux.h │ │ │ ├── DeviceBuilder.cpp │ │ │ ├── DeviceBuilder.h │ │ │ ├── DirectXDecodedMux.cpp │ │ │ ├── DirectXDecodedMux.h │ │ │ ├── ExtendedRender.h │ │ │ ├── FrameBuffer.cpp │ │ │ ├── FrameBuffer.h │ │ │ ├── GeneralCombiner.cpp │ │ │ ├── GeneralCombiner.h │ │ │ ├── GraphicsContext.cpp │ │ │ ├── GraphicsContext.h │ │ │ ├── Graphics_1.3.h │ │ │ ├── IColor.h │ │ │ ├── Makefile │ │ │ ├── OGLCombiner.cpp │ │ │ ├── OGLCombiner.h │ │ │ ├── OGLCombinerNV.cpp │ │ │ ├── OGLCombinerNV.h │ │ │ ├── OGLCombinerTNT2.cpp │ │ │ ├── OGLCombinerTNT2.h │ │ │ ├── OGLDecodedMux.cpp │ │ │ ├── OGLDecodedMux.h │ │ │ ├── OGLExtCombiner.cpp │ │ │ ├── OGLExtCombiner.h │ │ │ ├── OGLExtRender.cpp │ │ │ ├── OGLExtRender.h │ │ │ ├── OGLFragmentShaders.cpp │ │ │ ├── OGLFragmentShaders.h │ │ │ ├── OGLGraphicsContext.cpp │ │ │ ├── OGLGraphicsContext.h │ │ │ ├── OGLRender.cpp │ │ │ ├── OGLRender.h │ │ │ ├── OGLRenderExt.cpp │ │ │ ├── OGLTexture.cpp │ │ │ ├── OGLTexture.h │ │ │ ├── RDP_Texture.h │ │ │ ├── RSP_GBI0.h │ │ │ ├── RSP_GBI1.h │ │ │ ├── RSP_GBI2.h │ │ │ ├── RSP_GBI2_ext.h │ │ │ ├── RSP_GBI_Others.h │ │ │ ├── RSP_GBI_Sprite2D.h │ │ │ ├── RSP_Parser.cpp │ │ │ ├── RSP_Parser.h │ │ │ ├── RSP_S2DEX.cpp │ │ │ ├── RSP_S2DEX.h │ │ │ ├── Render.cpp │ │ │ ├── Render.h │ │ │ ├── RenderBase.cpp │ │ │ ├── RenderBase.h │ │ │ ├── RenderExt.cpp │ │ │ ├── RenderTexture.cpp │ │ │ ├── RenderTexture.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── TextureFilters.cpp │ │ │ ├── TextureFilters.h │ │ │ ├── TextureFilters_2xsai.cpp │ │ │ ├── TextureFilters_hq2x.cpp │ │ │ ├── TextureFilters_hq2x.h │ │ │ ├── TextureFilters_hq4x.cpp │ │ │ ├── TextureFilters_hq4x.h │ │ │ ├── TextureFilters_lq2x.h │ │ │ ├── TextureManager.cpp │ │ │ ├── TextureManager.h │ │ │ ├── Timing.h │ │ │ ├── UcodeDefs.h │ │ │ ├── VertexShaderConstantDef.h │ │ │ ├── Video.cpp │ │ │ ├── Video.h │ │ │ ├── blender.cpp │ │ │ ├── blender.h │ │ │ ├── gui_gtk2 │ │ │ │ ├── main_gtk2.cpp │ │ │ │ └── messagebox_gtk2.c │ │ │ ├── liblinux │ │ │ │ ├── BMGDLL.h │ │ │ │ ├── BMGImage.c │ │ │ │ ├── BMGImage.h │ │ │ │ ├── BMGLibPNG.h │ │ │ │ ├── BMGUtils.c │ │ │ │ ├── BMGUtils.h │ │ │ │ ├── adler32.c │ │ │ │ ├── bmp.c │ │ │ │ ├── crc32.c │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── infblock.c │ │ │ │ ├── infblock.h │ │ │ │ ├── infcodes.c │ │ │ │ ├── infcodes.h │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── infutil.c │ │ │ │ ├── infutil.h │ │ │ │ ├── jpegrw.h │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngrw.c │ │ │ │ ├── pngrw.h │ │ │ │ ├── pngset.c │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ ├── pngwutil.c │ │ │ │ ├── tiffrw.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ ├── math.cpp │ │ │ ├── math.h │ │ │ ├── messagebox.h │ │ │ ├── messagebox_nogui.cpp │ │ │ ├── stdafx.h │ │ │ ├── typedefs.h │ │ │ ├── ucode.h │ │ │ └── winlnxdefs.h │ │ ├── roms │ │ │ ├── mupen64plus.v64.gz │ │ │ └── mupen64plus │ │ │ │ ├── MAKEFILE.MAK │ │ │ │ ├── assets │ │ │ │ ├── Bluegra2.bmp │ │ │ │ ├── LICENSES │ │ │ │ ├── LOGO_ENV.H │ │ │ │ ├── Redgrad2.bmp │ │ │ │ ├── White.bmp │ │ │ │ ├── bluegrad.bmp │ │ │ │ ├── box_n.h │ │ │ │ ├── c_env.bmp │ │ │ │ ├── c_gray.bmp │ │ │ │ ├── logo.3ds │ │ │ │ ├── logo.an8 │ │ │ │ ├── logo_env.3ds │ │ │ │ ├── logo_env.an8 │ │ │ │ ├── logo_env_n.h │ │ │ │ ├── logo_n.h │ │ │ │ └── redgrad.bmp │ │ │ │ ├── cfb.c │ │ │ │ ├── control.h │ │ │ │ ├── demo.c │ │ │ │ ├── fifo.c │ │ │ │ ├── gfxlib.c │ │ │ │ ├── graphics.h │ │ │ │ ├── hardware.h │ │ │ │ ├── include │ │ │ │ ├── config.h │ │ │ │ ├── helpfunc.h │ │ │ │ └── types.h │ │ │ │ ├── make │ │ │ │ ├── sprite.h │ │ │ │ ├── sprites │ │ │ │ └── fade.h │ │ │ │ ├── stack.c │ │ │ │ └── zbuf.c │ │ ├── rsp_hle │ │ │ ├── Audio_1.1.h │ │ │ ├── Makefile │ │ │ ├── Rsp_1.1.h │ │ │ ├── build │ │ │ │ └── mupen64_hle_rsp_azimer.build │ │ │ │ │ └── Debug-iphoneos │ │ │ │ │ └── mupen64_hle_rsp_azimer.build │ │ │ │ │ ├── build-state.dat │ │ │ │ │ ├── build-state~.dat │ │ │ │ │ ├── mupen64_hle_rsp_azimer.dep │ │ │ │ │ └── mupen64_hle_rsp_azimer~.dep │ │ │ ├── hle.h │ │ │ ├── jpeg.c │ │ │ ├── main.c │ │ │ ├── mupen64_hle_rsp_azimer.dylib │ │ │ ├── mupen64_hle_rsp_azimer.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── ucode1.cpp │ │ │ ├── ucode2.cpp │ │ │ ├── ucode3.cpp │ │ │ ├── ucode3mp3.cpp │ │ │ └── wintypes.h │ │ ├── tools │ │ │ ├── profiling.txt │ │ │ ├── r4300prof.c │ │ │ ├── regtests │ │ │ │ ├── daily-tests.cfg │ │ │ │ └── regression-video.py │ │ │ ├── savestate_convert.c │ │ │ └── savestate_convert.txt │ │ ├── translations │ │ │ ├── mupen64plus.ts │ │ │ ├── mupen64plus_de.ts │ │ │ ├── mupen64plus_en.ts │ │ │ ├── mupen64plus_nb.ts │ │ │ ├── mupen64plus_nl.ts │ │ │ └── update_qt4_translations.sh │ │ ├── uninstall.sh │ │ └── version.win32.h │ ├── SDL │ │ ├── .indent.pro │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── dir-prop-base │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ ├── BUGS.svn-base │ │ │ │ ├── Borland.html.svn-base │ │ │ │ ├── Borland.zip.svn-base │ │ │ │ ├── COPYING.svn-base │ │ │ │ ├── CREDITS.svn-base │ │ │ │ ├── INSTALL.svn-base │ │ │ │ ├── Makefile.in.svn-base │ │ │ │ ├── Makefile.minimal.svn-base │ │ │ │ ├── README-SDL.txt.svn-base │ │ │ │ ├── README.BeOS.svn-base │ │ │ │ ├── README.MacOSX.svn-base │ │ │ │ ├── README.Porting.svn-base │ │ │ │ ├── README.QNX.svn-base │ │ │ │ ├── README.RISCOS.svn-base │ │ │ │ ├── README.WinCE.svn-base │ │ │ │ ├── README.svn-base │ │ │ │ ├── SDL.spec.in.svn-base │ │ │ │ ├── TODO.svn-base │ │ │ │ ├── VisualC.html.svn-base │ │ │ │ ├── Watcom-Win32.zip.svn-base │ │ │ │ ├── WhatsNew.svn-base │ │ │ │ ├── autogen.sh.svn-base │ │ │ │ ├── configure.in.svn-base │ │ │ │ ├── docs.html.svn-base │ │ │ │ ├── sdl-config.in.svn-base │ │ │ │ └── sdl.m4.svn-base │ │ │ └── text-base │ │ │ │ ├── .indent.pro.svn-base │ │ │ │ ├── BUGS.svn-base │ │ │ │ ├── Borland.html.svn-base │ │ │ │ ├── Borland.zip.svn-base │ │ │ │ ├── COPYING.svn-base │ │ │ │ ├── CREDITS.svn-base │ │ │ │ ├── INSTALL.svn-base │ │ │ │ ├── Makefile.ds.svn-base │ │ │ │ ├── Makefile.in.svn-base │ │ │ │ ├── Makefile.minimal.svn-base │ │ │ │ ├── Makefile.pandora.svn-base │ │ │ │ ├── Makefile.wiz.svn-base │ │ │ │ ├── NOTES.svn-base │ │ │ │ ├── README-SDL.txt.svn-base │ │ │ │ ├── README.BeOS.svn-base │ │ │ │ ├── README.DirectFB.svn-base │ │ │ │ ├── README.MacOSX.svn-base │ │ │ │ ├── README.PS3.svn-base │ │ │ │ ├── README.Porting.svn-base │ │ │ │ ├── README.QNX.svn-base │ │ │ │ ├── README.RISCOS.svn-base │ │ │ │ ├── README.SVN.svn-base │ │ │ │ ├── README.Watcom.svn-base │ │ │ │ ├── README.WinCE.svn-base │ │ │ │ ├── README.iphoneos.svn-base │ │ │ │ ├── README.pandora.svn-base │ │ │ │ ├── README.svn-base │ │ │ │ ├── SDL.spec.in.svn-base │ │ │ │ ├── TODO.svn-base │ │ │ │ ├── UNDER_CONSTRUCTION.txt.svn-base │ │ │ │ ├── VisualC.html.svn-base │ │ │ │ ├── Watcom-Win32.zip.svn-base │ │ │ │ ├── WhatsNew.svn-base │ │ │ │ ├── autogen.sh.svn-base │ │ │ │ ├── configure.in.svn-base │ │ │ │ ├── docs.html.svn-base │ │ │ │ ├── sdl-config.in.svn-base │ │ │ │ ├── sdl.m4.svn-base │ │ │ │ └── sdl.pc.in.svn-base │ │ ├── BUGS │ │ ├── Borland.html │ │ ├── Borland.zip │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── INSTALL │ │ ├── Makefile.ds │ │ ├── Makefile.in │ │ ├── Makefile.minimal │ │ ├── Makefile.pandora │ │ ├── Makefile.wiz │ │ ├── NOTES │ │ ├── README │ │ ├── README-SDL.txt │ │ ├── README.BeOS │ │ ├── README.DirectFB │ │ ├── README.MacOSX │ │ ├── README.PS3 │ │ ├── README.Porting │ │ ├── README.QNX │ │ ├── README.RISCOS │ │ ├── README.SVN │ │ ├── README.Watcom │ │ ├── README.WinCE │ │ ├── README.iphoneos │ │ ├── README.pandora │ │ ├── SDL.spec.in │ │ ├── TODO │ │ ├── UNDER_CONSTRUCTION.txt │ │ ├── VisualC.html │ │ ├── VisualC │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── SDL.sln.svn-base │ │ │ │ │ └── SDL_VS2008.sln.svn-base │ │ │ ├── SDL.sln │ │ │ ├── SDL │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL.vcproj.svn-base │ │ │ │ │ │ ├── SDL_VS2008.vcproj.svn-base │ │ │ │ │ │ ├── Version.rc.svn-base │ │ │ │ │ │ └── resource.h.svn-base │ │ │ │ ├── SDL.vcproj │ │ │ │ ├── SDL_VS2008.vcproj │ │ │ │ ├── Version.rc │ │ │ │ └── resource.h │ │ │ ├── SDL_VS2008.sln │ │ │ ├── SDLmain │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDLmain.vcproj.svn-base │ │ │ │ │ │ └── SDLmain_VS2008.vcproj.svn-base │ │ │ │ ├── SDLmain.vcproj │ │ │ │ └── SDLmain_VS2008.vcproj │ │ │ └── tests │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── tests.sln.svn-base │ │ │ │ ├── automated │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── automated.vcproj.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── automated.vcproj.svn-base │ │ │ │ └── automated.vcproj │ │ │ │ ├── checkkeys │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── checkkeys.vcproj.svn-base │ │ │ │ └── checkkeys.vcproj │ │ │ │ ├── graywin │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── graywin.vcproj.svn-base │ │ │ │ └── graywin.vcproj │ │ │ │ ├── loopwave │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── loopwave.vcproj.svn-base │ │ │ │ └── loopwave.vcproj │ │ │ │ ├── testalpha │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testalpha.vcproj.svn-base │ │ │ │ └── testalpha.vcproj │ │ │ │ ├── testdraw2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testdraw2.vcproj.svn-base │ │ │ │ └── testdraw2.vcproj │ │ │ │ ├── testfile │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testfile.vcproj.svn-base │ │ │ │ └── testfile.vcproj │ │ │ │ ├── testgamma │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testgamma.vcproj.svn-base │ │ │ │ └── testgamma.vcproj │ │ │ │ ├── testgl │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testgl.vcproj.svn-base │ │ │ │ └── testgl.vcproj │ │ │ │ ├── testgl2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testgl2.vcproj.svn-base │ │ │ │ └── testgl2.vcproj │ │ │ │ ├── testjoystick │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testjoystick.vcproj.svn-base │ │ │ │ └── testjoystick.vcproj │ │ │ │ ├── testoverlay │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testoverlay.vcproj.svn-base │ │ │ │ └── testoverlay.vcproj │ │ │ │ ├── testoverlay2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testoverlay2.vcproj.svn-base │ │ │ │ └── testoverlay2.vcproj │ │ │ │ ├── testpalette │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testpalette.vcproj.svn-base │ │ │ │ └── testpalette.vcproj │ │ │ │ ├── testplatform │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testplatform.vcproj.svn-base │ │ │ │ └── testplatform.vcproj │ │ │ │ ├── testpower │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testpower.vcproj.svn-base │ │ │ │ └── testpower.vcproj │ │ │ │ ├── tests.sln │ │ │ │ ├── testsprite │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testsprite.vcproj.svn-base │ │ │ │ └── testsprite.vcproj │ │ │ │ ├── testsprite2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testsprite2.vcproj.svn-base │ │ │ │ └── testsprite2.vcproj │ │ │ │ ├── testvidinfo │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testvidinfo.vcproj.svn-base │ │ │ │ └── testvidinfo.vcproj │ │ │ │ ├── testwin │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── testwin.vcproj.svn-base │ │ │ │ └── testwin.vcproj │ │ │ │ └── testwm │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── testwm.vcproj.svn-base │ │ │ │ └── testwm.vcproj │ │ ├── VisualCE │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── SDL.sln.svn-base │ │ │ │ │ └── SDL.vcw.svn-base │ │ │ ├── SDL.sln │ │ │ ├── SDL.vcw │ │ │ ├── SDL │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL.vcp.svn-base │ │ │ │ │ │ └── SDL.vcproj.svn-base │ │ │ │ ├── SDL.vcp │ │ │ │ └── SDL.vcproj │ │ │ ├── SDLMain │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDLmain.vcp.svn-base │ │ │ │ │ │ └── SDLmain.vcproj.svn-base │ │ │ │ ├── SDLmain.vcp │ │ │ │ └── SDLmain.vcproj │ │ │ ├── loopwave │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── loopwave.vcp.svn-base │ │ │ │ │ │ └── loopwave.vcproj.svn-base │ │ │ │ ├── loopwave.vcp │ │ │ │ └── loopwave.vcproj │ │ │ ├── testalpha │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── testalpha.vcp.svn-base │ │ │ │ │ │ └── testalpha.vcproj.svn-base │ │ │ │ ├── testalpha.vcp │ │ │ │ └── testalpha.vcproj │ │ │ ├── testtimer │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── testtimer.vcp.svn-base │ │ │ │ │ │ └── testtimer.vcproj.svn-base │ │ │ │ ├── testtimer.vcp │ │ │ │ └── testtimer.vcproj │ │ │ └── testwin │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── testwin.vcp.svn-base │ │ │ │ │ └── testwin.vcproj.svn-base │ │ │ │ ├── testwin.vcp │ │ │ │ └── testwin.vcproj │ │ ├── Watcom-Win32.zip │ │ ├── WhatsNew │ │ ├── Xcode-iPhoneOS │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── Demos │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── Default.png.svn-base │ │ │ │ │ │ └── Icon.png.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Default.png.svn-base │ │ │ │ │ │ ├── Icon.png.svn-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ └── README.svn-base │ │ │ │ ├── Default.png │ │ │ │ ├── DemosiPhoneOS.xcodeproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── Icon.png │ │ │ │ ├── Info.plist │ │ │ │ ├── README │ │ │ │ ├── data │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── icon.bmp.svn-base │ │ │ │ │ │ │ ├── ship.bmp.svn-base │ │ │ │ │ │ │ ├── space.bmp.svn-base │ │ │ │ │ │ │ └── stroke.bmp.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── icon.bmp.svn-base │ │ │ │ │ │ │ ├── ship.bmp.svn-base │ │ │ │ │ │ │ ├── space.bmp.svn-base │ │ │ │ │ │ │ └── stroke.bmp.svn-base │ │ │ │ │ ├── bitmapfont │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ ├── kromasky_16x16.bmp.svn-base │ │ │ │ │ │ │ │ └── license.txt.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── kromasky_16x16.bmp.svn-base │ │ │ │ │ │ │ │ └── license.txt.svn-base │ │ │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ │ │ └── license.txt │ │ │ │ │ ├── drums │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ ├── ds_brush_snare.wav.svn-base │ │ │ │ │ │ │ │ ├── ds_china.wav.svn-base │ │ │ │ │ │ │ │ ├── ds_kick_big_amb.wav.svn-base │ │ │ │ │ │ │ │ └── ds_loose_skin_mute.wav.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── ds_brush_snare.wav.svn-base │ │ │ │ │ │ │ │ ├── ds_china.wav.svn-base │ │ │ │ │ │ │ │ ├── ds_kick_big_amb.wav.svn-base │ │ │ │ │ │ │ │ └── ds_loose_skin_mute.wav.svn-base │ │ │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ │ │ ├── ds_china.wav │ │ │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ │ │ ├── icon.bmp │ │ │ │ │ ├── ship.bmp │ │ │ │ │ ├── space.bmp │ │ │ │ │ └── stroke.bmp │ │ │ │ └── src │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── accelerometer.c.svn-base │ │ │ │ │ │ ├── common.c.svn-base │ │ │ │ │ │ ├── common.h.svn-base │ │ │ │ │ │ ├── fireworks.c.svn-base │ │ │ │ │ │ ├── happy.c.svn-base │ │ │ │ │ │ ├── keyboard.c.svn-base │ │ │ │ │ │ ├── mixer.c.svn-base │ │ │ │ │ │ ├── rectangles.c.svn-base │ │ │ │ │ │ └── touch.c.svn-base │ │ │ │ │ ├── accelerometer.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── fireworks.c │ │ │ │ │ ├── happy.c │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── mixer.c │ │ │ │ │ ├── rectangles.c │ │ │ │ │ └── touch.c │ │ │ ├── SDL │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ ├── SDLiPhoneOS.xcodeproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ ├── me.mode1v3 │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── build │ │ │ │ │ ├── Debug-iphoneos │ │ │ │ │ ├── libSDLiPhoneOS.a │ │ │ │ │ └── usr │ │ │ │ │ │ └── local │ │ │ │ │ │ └── include │ │ │ │ │ │ ├── SDL.h │ │ │ │ │ │ ├── SDL_atomic.h │ │ │ │ │ │ ├── SDL_audio.h │ │ │ │ │ │ ├── SDL_compat.h │ │ │ │ │ │ ├── SDL_config.h │ │ │ │ │ │ ├── SDL_copying.h │ │ │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ │ │ ├── SDL_endian.h │ │ │ │ │ │ ├── SDL_error.h │ │ │ │ │ │ ├── SDL_events.h │ │ │ │ │ │ ├── SDL_haptic.h │ │ │ │ │ │ ├── SDL_joystick.h │ │ │ │ │ │ ├── SDL_keyboard.h │ │ │ │ │ │ ├── SDL_keysym.h │ │ │ │ │ │ ├── SDL_loadso.h │ │ │ │ │ │ ├── SDL_main.h │ │ │ │ │ │ ├── SDL_mouse.h │ │ │ │ │ │ ├── SDL_mutex.h │ │ │ │ │ │ ├── SDL_name.h │ │ │ │ │ │ ├── SDL_opengl.h │ │ │ │ │ │ ├── SDL_opengles.h │ │ │ │ │ │ ├── SDL_pixels.h │ │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ │ ├── SDL_power.h │ │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ │ ├── SDL_rect.h │ │ │ │ │ │ ├── SDL_revision.h │ │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ │ ├── SDL_scancode.h │ │ │ │ │ │ ├── SDL_stdinc.h │ │ │ │ │ │ ├── SDL_surface.h │ │ │ │ │ │ ├── SDL_syswm.h │ │ │ │ │ │ ├── SDL_thread.h │ │ │ │ │ │ ├── SDL_timer.h │ │ │ │ │ │ ├── SDL_types.h │ │ │ │ │ │ ├── SDL_version.h │ │ │ │ │ │ ├── SDL_video.h │ │ │ │ │ │ ├── begin_code.h │ │ │ │ │ │ └── close_code.h │ │ │ │ │ └── SDLiPhoneOS.build │ │ │ │ │ └── Debug-iphoneos │ │ │ │ │ ├── Generate Header Files.build │ │ │ │ │ ├── Generate Header Files.dep │ │ │ │ │ ├── Script-00646544107E3D8300183915.sh │ │ │ │ │ ├── Script-00646546107E3DB200183915.sh │ │ │ │ │ └── build-state.dat │ │ │ │ │ └── StaticLibiPhoneOS.build │ │ │ │ │ ├── Objects-normal │ │ │ │ │ ├── armv7 │ │ │ │ │ │ ├── SDL.d │ │ │ │ │ │ ├── SDL.dia │ │ │ │ │ │ ├── SDLUIAccelerationDelegate.d │ │ │ │ │ │ ├── SDLUIAccelerationDelegate.dia │ │ │ │ │ │ ├── SDL_RLEaccel.d │ │ │ │ │ │ ├── SDL_RLEaccel.dia │ │ │ │ │ │ ├── SDL_atomic.d │ │ │ │ │ │ ├── SDL_atomic.dia │ │ │ │ │ │ ├── SDL_audio.d │ │ │ │ │ │ ├── SDL_audio.dia │ │ │ │ │ │ ├── SDL_audiocvt.d │ │ │ │ │ │ ├── SDL_audiocvt.dia │ │ │ │ │ │ ├── SDL_audiotypecvt.d │ │ │ │ │ │ ├── SDL_audiotypecvt.dia │ │ │ │ │ │ ├── SDL_blendline.d │ │ │ │ │ │ ├── SDL_blendline.dia │ │ │ │ │ │ ├── SDL_blendpoint.d │ │ │ │ │ │ ├── SDL_blendpoint.dia │ │ │ │ │ │ ├── SDL_blendrect.d │ │ │ │ │ │ ├── SDL_blendrect.dia │ │ │ │ │ │ ├── SDL_blit.d │ │ │ │ │ │ ├── SDL_blit.dia │ │ │ │ │ │ ├── SDL_blit_0.d │ │ │ │ │ │ ├── SDL_blit_0.dia │ │ │ │ │ │ ├── SDL_blit_1.d │ │ │ │ │ │ ├── SDL_blit_1.dia │ │ │ │ │ │ ├── SDL_blit_A.d │ │ │ │ │ │ ├── SDL_blit_A.dia │ │ │ │ │ │ ├── SDL_blit_N.d │ │ │ │ │ │ ├── SDL_blit_N.dia │ │ │ │ │ │ ├── SDL_blit_auto.d │ │ │ │ │ │ ├── SDL_blit_auto.dia │ │ │ │ │ │ ├── SDL_blit_copy.d │ │ │ │ │ │ ├── SDL_blit_copy.dia │ │ │ │ │ │ ├── SDL_blit_slow.d │ │ │ │ │ │ ├── SDL_blit_slow.dia │ │ │ │ │ │ ├── SDL_bmp.d │ │ │ │ │ │ ├── SDL_bmp.dia │ │ │ │ │ │ ├── SDL_compat.d │ │ │ │ │ │ ├── SDL_compat.dia │ │ │ │ │ │ ├── SDL_coreaudio_iphone.d │ │ │ │ │ │ ├── SDL_coreaudio_iphone.dia │ │ │ │ │ │ ├── SDL_cpuinfo.d │ │ │ │ │ │ ├── SDL_cpuinfo.dia │ │ │ │ │ │ ├── SDL_drawline.d │ │ │ │ │ │ ├── SDL_drawline.dia │ │ │ │ │ │ ├── SDL_drawpoint.d │ │ │ │ │ │ ├── SDL_drawpoint.dia │ │ │ │ │ │ ├── SDL_dummyaudio.d │ │ │ │ │ │ ├── SDL_dummyaudio.dia │ │ │ │ │ │ ├── SDL_error.d │ │ │ │ │ │ ├── SDL_error.dia │ │ │ │ │ │ ├── SDL_events.d │ │ │ │ │ │ ├── SDL_events.dia │ │ │ │ │ │ ├── SDL_fatal.d │ │ │ │ │ │ ├── SDL_fatal.dia │ │ │ │ │ │ ├── SDL_fillrect.d │ │ │ │ │ │ ├── SDL_fillrect.dia │ │ │ │ │ │ ├── SDL_gamma.d │ │ │ │ │ │ ├── SDL_gamma.dia │ │ │ │ │ │ ├── SDL_getenv.d │ │ │ │ │ │ ├── SDL_getenv.dia │ │ │ │ │ │ ├── SDL_haptic.d │ │ │ │ │ │ ├── SDL_haptic.dia │ │ │ │ │ │ ├── SDL_iconv.d │ │ │ │ │ │ ├── SDL_iconv.dia │ │ │ │ │ │ ├── SDL_joystick.d │ │ │ │ │ │ ├── SDL_joystick.dia │ │ │ │ │ │ ├── SDL_keyboard.d │ │ │ │ │ │ ├── SDL_keyboard.dia │ │ │ │ │ │ ├── SDL_malloc.d │ │ │ │ │ │ ├── SDL_malloc.dia │ │ │ │ │ │ ├── SDL_mixer.d │ │ │ │ │ │ ├── SDL_mixer.dia │ │ │ │ │ │ ├── SDL_mixer_MMX.d │ │ │ │ │ │ ├── SDL_mixer_MMX.dia │ │ │ │ │ │ ├── SDL_mixer_MMX_VC.d │ │ │ │ │ │ ├── SDL_mixer_MMX_VC.dia │ │ │ │ │ │ ├── SDL_mixer_m68k.d │ │ │ │ │ │ ├── SDL_mixer_m68k.dia │ │ │ │ │ │ ├── SDL_mouse.d │ │ │ │ │ │ ├── SDL_mouse.dia │ │ │ │ │ │ ├── SDL_nullevents.d │ │ │ │ │ │ ├── SDL_nullevents.dia │ │ │ │ │ │ ├── SDL_nullrender.d │ │ │ │ │ │ ├── SDL_nullrender.dia │ │ │ │ │ │ ├── SDL_nullvideo.d │ │ │ │ │ │ ├── SDL_nullvideo.dia │ │ │ │ │ │ ├── SDL_pixels.d │ │ │ │ │ │ ├── SDL_pixels.dia │ │ │ │ │ │ ├── SDL_qsort.d │ │ │ │ │ │ ├── SDL_qsort.dia │ │ │ │ │ │ ├── SDL_quit.d │ │ │ │ │ │ ├── SDL_quit.dia │ │ │ │ │ │ ├── SDL_rect.d │ │ │ │ │ │ ├── SDL_rect.dia │ │ │ │ │ │ ├── SDL_renderer_gl.d │ │ │ │ │ │ ├── SDL_renderer_gl.dia │ │ │ │ │ │ ├── SDL_renderer_gles.d │ │ │ │ │ │ ├── SDL_renderer_gles.dia │ │ │ │ │ │ ├── SDL_renderer_sw.d │ │ │ │ │ │ ├── SDL_renderer_sw.dia │ │ │ │ │ │ ├── SDL_rwops.d │ │ │ │ │ │ ├── SDL_rwops.dia │ │ │ │ │ │ ├── SDL_stdlib.d │ │ │ │ │ │ ├── SDL_stdlib.dia │ │ │ │ │ │ ├── SDL_stretch.d │ │ │ │ │ │ ├── SDL_stretch.dia │ │ │ │ │ │ ├── SDL_string.d │ │ │ │ │ │ ├── SDL_string.dia │ │ │ │ │ │ ├── SDL_surface.d │ │ │ │ │ │ ├── SDL_surface.dia │ │ │ │ │ │ ├── SDL_syscond.d │ │ │ │ │ │ ├── SDL_syscond.dia │ │ │ │ │ │ ├── SDL_syshaptic.d │ │ │ │ │ │ ├── SDL_syshaptic.dia │ │ │ │ │ │ ├── SDL_sysjoystick.d │ │ │ │ │ │ ├── SDL_sysjoystick.dia │ │ │ │ │ │ ├── SDL_sysloadso-6DA0FE436495268A.d │ │ │ │ │ │ ├── SDL_sysloadso-6DA0FE436495268A.dia │ │ │ │ │ │ ├── SDL_sysloadso-F79DC9C1AFDBDF58.d │ │ │ │ │ │ ├── SDL_sysloadso-F79DC9C1AFDBDF58.dia │ │ │ │ │ │ ├── SDL_sysmutex.d │ │ │ │ │ │ ├── SDL_sysmutex.dia │ │ │ │ │ │ ├── SDL_syssem.d │ │ │ │ │ │ ├── SDL_syssem.dia │ │ │ │ │ │ ├── SDL_systhread.d │ │ │ │ │ │ ├── SDL_systhread.dia │ │ │ │ │ │ ├── SDL_systimer.d │ │ │ │ │ │ ├── SDL_systimer.dia │ │ │ │ │ │ ├── SDL_thread.d │ │ │ │ │ │ ├── SDL_thread.dia │ │ │ │ │ │ ├── SDL_timer.d │ │ │ │ │ │ ├── SDL_timer.dia │ │ │ │ │ │ ├── SDL_uikitappdelegate.d │ │ │ │ │ │ ├── SDL_uikitappdelegate.dia │ │ │ │ │ │ ├── SDL_uikitevents.d │ │ │ │ │ │ ├── SDL_uikitevents.dia │ │ │ │ │ │ ├── SDL_uikitopengles.d │ │ │ │ │ │ ├── SDL_uikitopengles.dia │ │ │ │ │ │ ├── SDL_uikitopenglview.d │ │ │ │ │ │ ├── SDL_uikitopenglview.dia │ │ │ │ │ │ ├── SDL_uikitvideo.d │ │ │ │ │ │ ├── SDL_uikitvideo.dia │ │ │ │ │ │ ├── SDL_uikitview.d │ │ │ │ │ │ ├── SDL_uikitview.dia │ │ │ │ │ │ ├── SDL_uikitwindow.d │ │ │ │ │ │ ├── SDL_uikitwindow.dia │ │ │ │ │ │ ├── SDL_video.d │ │ │ │ │ │ ├── SDL_video.dia │ │ │ │ │ │ ├── SDL_wave.d │ │ │ │ │ │ ├── SDL_wave.dia │ │ │ │ │ │ ├── SDL_windowevents.d │ │ │ │ │ │ ├── SDL_windowevents.dia │ │ │ │ │ │ ├── SDL_yuv_mmx.d │ │ │ │ │ │ ├── SDL_yuv_mmx.dia │ │ │ │ │ │ ├── SDL_yuv_sw.d │ │ │ │ │ │ ├── SDL_yuv_sw.dia │ │ │ │ │ │ ├── SDLiPhoneOS.LinkFileList │ │ │ │ │ │ ├── jumphack.d │ │ │ │ │ │ ├── jumphack.dia │ │ │ │ │ │ └── libSDLiPhoneOS.a │ │ │ │ │ └── armv7s │ │ │ │ │ │ ├── SDL.d │ │ │ │ │ │ ├── SDL.dia │ │ │ │ │ │ ├── SDLUIAccelerationDelegate.d │ │ │ │ │ │ ├── SDLUIAccelerationDelegate.dia │ │ │ │ │ │ ├── SDL_RLEaccel.d │ │ │ │ │ │ ├── SDL_RLEaccel.dia │ │ │ │ │ │ ├── SDL_atomic.d │ │ │ │ │ │ ├── SDL_atomic.dia │ │ │ │ │ │ ├── SDL_audio.d │ │ │ │ │ │ ├── SDL_audio.dia │ │ │ │ │ │ ├── SDL_audiocvt.d │ │ │ │ │ │ ├── SDL_audiocvt.dia │ │ │ │ │ │ ├── SDL_audiotypecvt.d │ │ │ │ │ │ ├── SDL_audiotypecvt.dia │ │ │ │ │ │ ├── SDL_blendline.d │ │ │ │ │ │ ├── SDL_blendline.dia │ │ │ │ │ │ ├── SDL_blendpoint.d │ │ │ │ │ │ ├── SDL_blendpoint.dia │ │ │ │ │ │ ├── SDL_blendrect.d │ │ │ │ │ │ ├── SDL_blendrect.dia │ │ │ │ │ │ ├── SDL_blit.d │ │ │ │ │ │ ├── SDL_blit.dia │ │ │ │ │ │ ├── SDL_blit_0.d │ │ │ │ │ │ ├── SDL_blit_0.dia │ │ │ │ │ │ ├── SDL_blit_1.d │ │ │ │ │ │ ├── SDL_blit_1.dia │ │ │ │ │ │ ├── SDL_blit_A.d │ │ │ │ │ │ ├── SDL_blit_A.dia │ │ │ │ │ │ ├── SDL_blit_N.d │ │ │ │ │ │ ├── SDL_blit_N.dia │ │ │ │ │ │ ├── SDL_blit_auto.d │ │ │ │ │ │ ├── SDL_blit_auto.dia │ │ │ │ │ │ ├── SDL_blit_copy.d │ │ │ │ │ │ ├── SDL_blit_copy.dia │ │ │ │ │ │ ├── SDL_blit_slow.d │ │ │ │ │ │ ├── SDL_blit_slow.dia │ │ │ │ │ │ ├── SDL_bmp.d │ │ │ │ │ │ ├── SDL_bmp.dia │ │ │ │ │ │ ├── SDL_compat.d │ │ │ │ │ │ ├── SDL_compat.dia │ │ │ │ │ │ ├── SDL_coreaudio_iphone.d │ │ │ │ │ │ ├── SDL_coreaudio_iphone.dia │ │ │ │ │ │ ├── SDL_cpuinfo.d │ │ │ │ │ │ ├── SDL_cpuinfo.dia │ │ │ │ │ │ ├── SDL_drawline.d │ │ │ │ │ │ ├── SDL_drawline.dia │ │ │ │ │ │ ├── SDL_drawpoint.d │ │ │ │ │ │ ├── SDL_drawpoint.dia │ │ │ │ │ │ ├── SDL_dummyaudio.d │ │ │ │ │ │ ├── SDL_dummyaudio.dia │ │ │ │ │ │ ├── SDL_error.d │ │ │ │ │ │ ├── SDL_error.dia │ │ │ │ │ │ ├── SDL_events.d │ │ │ │ │ │ ├── SDL_events.dia │ │ │ │ │ │ ├── SDL_fatal.d │ │ │ │ │ │ ├── SDL_fatal.dia │ │ │ │ │ │ ├── SDL_fillrect.d │ │ │ │ │ │ ├── SDL_fillrect.dia │ │ │ │ │ │ ├── SDL_gamma.d │ │ │ │ │ │ ├── SDL_gamma.dia │ │ │ │ │ │ ├── SDL_getenv.d │ │ │ │ │ │ ├── SDL_getenv.dia │ │ │ │ │ │ ├── SDL_haptic.d │ │ │ │ │ │ ├── SDL_haptic.dia │ │ │ │ │ │ ├── SDL_iconv.d │ │ │ │ │ │ ├── SDL_iconv.dia │ │ │ │ │ │ ├── SDL_joystick.d │ │ │ │ │ │ ├── SDL_joystick.dia │ │ │ │ │ │ ├── SDL_keyboard.d │ │ │ │ │ │ ├── SDL_keyboard.dia │ │ │ │ │ │ ├── SDL_malloc.d │ │ │ │ │ │ ├── SDL_malloc.dia │ │ │ │ │ │ ├── SDL_mixer.d │ │ │ │ │ │ ├── SDL_mixer.dia │ │ │ │ │ │ ├── SDL_mixer_MMX.d │ │ │ │ │ │ ├── SDL_mixer_MMX.dia │ │ │ │ │ │ ├── SDL_mixer_MMX_VC.d │ │ │ │ │ │ ├── SDL_mixer_MMX_VC.dia │ │ │ │ │ │ ├── SDL_mixer_m68k.d │ │ │ │ │ │ ├── SDL_mixer_m68k.dia │ │ │ │ │ │ ├── SDL_mouse.d │ │ │ │ │ │ ├── SDL_mouse.dia │ │ │ │ │ │ ├── SDL_nullevents.d │ │ │ │ │ │ ├── SDL_nullevents.dia │ │ │ │ │ │ ├── SDL_nullrender.d │ │ │ │ │ │ ├── SDL_nullrender.dia │ │ │ │ │ │ ├── SDL_nullvideo.d │ │ │ │ │ │ ├── SDL_nullvideo.dia │ │ │ │ │ │ ├── SDL_pixels.d │ │ │ │ │ │ ├── SDL_pixels.dia │ │ │ │ │ │ ├── SDL_qsort.d │ │ │ │ │ │ ├── SDL_qsort.dia │ │ │ │ │ │ ├── SDL_quit.d │ │ │ │ │ │ ├── SDL_quit.dia │ │ │ │ │ │ ├── SDL_rect.d │ │ │ │ │ │ ├── SDL_rect.dia │ │ │ │ │ │ ├── SDL_renderer_gl.d │ │ │ │ │ │ ├── SDL_renderer_gl.dia │ │ │ │ │ │ ├── SDL_renderer_gles.d │ │ │ │ │ │ ├── SDL_renderer_gles.dia │ │ │ │ │ │ ├── SDL_renderer_sw.d │ │ │ │ │ │ ├── SDL_renderer_sw.dia │ │ │ │ │ │ ├── SDL_rwops.d │ │ │ │ │ │ ├── SDL_rwops.dia │ │ │ │ │ │ ├── SDL_stdlib.d │ │ │ │ │ │ ├── SDL_stdlib.dia │ │ │ │ │ │ ├── SDL_stretch.d │ │ │ │ │ │ ├── SDL_stretch.dia │ │ │ │ │ │ ├── SDL_string.d │ │ │ │ │ │ ├── SDL_string.dia │ │ │ │ │ │ ├── SDL_surface.d │ │ │ │ │ │ ├── SDL_surface.dia │ │ │ │ │ │ ├── SDL_syscond.d │ │ │ │ │ │ ├── SDL_syscond.dia │ │ │ │ │ │ ├── SDL_syshaptic.d │ │ │ │ │ │ ├── SDL_syshaptic.dia │ │ │ │ │ │ ├── SDL_sysjoystick.d │ │ │ │ │ │ ├── SDL_sysjoystick.dia │ │ │ │ │ │ ├── SDL_sysloadso-6DA0FE436495268A.d │ │ │ │ │ │ ├── SDL_sysloadso-6DA0FE436495268A.dia │ │ │ │ │ │ ├── SDL_sysloadso-F79DC9C1AFDBDF58.d │ │ │ │ │ │ ├── SDL_sysloadso-F79DC9C1AFDBDF58.dia │ │ │ │ │ │ ├── SDL_sysmutex.d │ │ │ │ │ │ ├── SDL_sysmutex.dia │ │ │ │ │ │ ├── SDL_syssem.d │ │ │ │ │ │ ├── SDL_syssem.dia │ │ │ │ │ │ ├── SDL_systhread.d │ │ │ │ │ │ ├── SDL_systhread.dia │ │ │ │ │ │ ├── SDL_systimer.d │ │ │ │ │ │ ├── SDL_systimer.dia │ │ │ │ │ │ ├── SDL_thread.d │ │ │ │ │ │ ├── SDL_thread.dia │ │ │ │ │ │ ├── SDL_timer.d │ │ │ │ │ │ ├── SDL_timer.dia │ │ │ │ │ │ ├── SDL_uikitappdelegate.d │ │ │ │ │ │ ├── SDL_uikitappdelegate.dia │ │ │ │ │ │ ├── SDL_uikitevents.d │ │ │ │ │ │ ├── SDL_uikitevents.dia │ │ │ │ │ │ ├── SDL_uikitopengles.d │ │ │ │ │ │ ├── SDL_uikitopengles.dia │ │ │ │ │ │ ├── SDL_uikitopenglview.d │ │ │ │ │ │ ├── SDL_uikitopenglview.dia │ │ │ │ │ │ ├── SDL_uikitvideo.d │ │ │ │ │ │ ├── SDL_uikitvideo.dia │ │ │ │ │ │ ├── SDL_uikitview.d │ │ │ │ │ │ ├── SDL_uikitview.dia │ │ │ │ │ │ ├── SDL_uikitwindow.d │ │ │ │ │ │ ├── SDL_uikitwindow.dia │ │ │ │ │ │ ├── SDL_video.d │ │ │ │ │ │ ├── SDL_video.dia │ │ │ │ │ │ ├── SDL_wave.d │ │ │ │ │ │ ├── SDL_wave.dia │ │ │ │ │ │ ├── SDL_windowevents.d │ │ │ │ │ │ ├── SDL_windowevents.dia │ │ │ │ │ │ ├── SDL_yuv_mmx.d │ │ │ │ │ │ ├── SDL_yuv_mmx.dia │ │ │ │ │ │ ├── SDL_yuv_sw.d │ │ │ │ │ │ ├── SDL_yuv_sw.dia │ │ │ │ │ │ ├── SDLiPhoneOS.LinkFileList │ │ │ │ │ │ ├── jumphack.d │ │ │ │ │ │ ├── jumphack.dia │ │ │ │ │ │ └── libSDLiPhoneOS.a │ │ │ │ │ ├── SDLiPhoneOS-all-target-headers.hmap │ │ │ │ │ ├── SDLiPhoneOS-generated-files.hmap │ │ │ │ │ ├── SDLiPhoneOS-own-target-headers.hmap │ │ │ │ │ ├── SDLiPhoneOS-project-headers.hmap │ │ │ │ │ ├── SDLiPhoneOS.hmap │ │ │ │ │ ├── StaticLibiPhoneOS.dep │ │ │ │ │ └── build-state.dat │ │ │ ├── Template │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── SDL Application │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── Default.png.svn-base │ │ │ │ │ │ └── Icon.png.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Default.png.svn-base │ │ │ │ │ │ ├── Icon.png.svn-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── Classes │ │ │ │ │ └── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ └── entries │ │ │ │ │ ├── Default.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ └── entries │ │ │ │ │ ├── Debug-iphonesimulator │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ └── entries │ │ │ │ │ │ ├── ___PROJECTNAME___.app.dSYM │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ │ └── entries │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ │ └── Info.plist.svn-base │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ │ └── entries │ │ │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ │ └── ___PROJECTNAME___.svn-base │ │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ │ └── ___PROJECTNAME___.svn-base │ │ │ │ │ │ │ │ └── ___PROJECTNAME___ │ │ │ │ │ │ └── ___PROJECTNAME___.app │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ ├── Default.png.svn-base │ │ │ │ │ │ │ │ ├── Icon.png.svn-base │ │ │ │ │ │ │ │ └── ___PROJECTNAME___.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── Default.png.svn-base │ │ │ │ │ │ │ │ ├── Icon.png.svn-base │ │ │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ │ │ ├── PkgInfo.svn-base │ │ │ │ │ │ │ │ └── ___PROJECTNAME___.svn-base │ │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ └── ___PROJECTNAME___ │ │ │ │ │ └── ___PROJECTNAME___.build │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ └── entries │ │ │ │ │ │ ├── Debug-iphonesimulator │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ └── entries │ │ │ │ │ │ └── ___PROJECTNAME___.build │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___-all-target-headers.hmap.svn-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___-generated-files.hmap.svn-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___-own-target-headers.hmap.svn-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___-project-headers.hmap.svn-base │ │ │ │ │ │ │ │ └── ___PROJECTNAME___.hmap.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___-all-target-headers.hmap.svn-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___-generated-files.hmap.svn-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___-own-target-headers.hmap.svn-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___-project-headers.hmap.svn-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___.dep.svn-base │ │ │ │ │ │ │ │ ├── ___PROJECTNAME___.hmap.svn-base │ │ │ │ │ │ │ │ └── ___PROJECTNAME___~.dep.svn-base │ │ │ │ │ │ │ ├── Objects-normal │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ │ └── entries │ │ │ │ │ │ │ └── i386 │ │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ │ └── ___PROJECTNAME___.LinkFileList.svn-base │ │ │ │ │ │ │ │ └── ___PROJECTNAME___.LinkFileList │ │ │ │ │ │ │ ├── ___PROJECTNAME___-all-target-headers.hmap │ │ │ │ │ │ │ ├── ___PROJECTNAME___-generated-files.hmap │ │ │ │ │ │ │ ├── ___PROJECTNAME___-own-target-headers.hmap │ │ │ │ │ │ │ ├── ___PROJECTNAME___-project-headers.hmap │ │ │ │ │ │ │ ├── ___PROJECTNAME___.dep │ │ │ │ │ │ │ ├── ___PROJECTNAME___.hmap │ │ │ │ │ │ │ └── ___PROJECTNAME___~.dep │ │ │ │ │ │ └── ___PROJECTNAME___.pbxindex │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── categories.pbxbtree.svn-base │ │ │ │ │ │ │ ├── cdecls.pbxbtree.svn-base │ │ │ │ │ │ │ ├── decls.pbxbtree.svn-base │ │ │ │ │ │ │ ├── files.pbxbtree.svn-base │ │ │ │ │ │ │ ├── imports.pbxbtree.svn-base │ │ │ │ │ │ │ ├── pbxindex.header.svn-base │ │ │ │ │ │ │ ├── protocols.pbxbtree.svn-base │ │ │ │ │ │ │ ├── refs.pbxbtree.svn-base │ │ │ │ │ │ │ ├── subclasses.pbxbtree.svn-base │ │ │ │ │ │ │ └── symbols0.pbxsymbols.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── categories.pbxbtree.svn-base │ │ │ │ │ │ │ ├── cdecls.pbxbtree.svn-base │ │ │ │ │ │ │ ├── decls.pbxbtree.svn-base │ │ │ │ │ │ │ ├── files.pbxbtree.svn-base │ │ │ │ │ │ │ ├── imports.pbxbtree.svn-base │ │ │ │ │ │ │ ├── pbxindex.header.svn-base │ │ │ │ │ │ │ ├── protocols.pbxbtree.svn-base │ │ │ │ │ │ │ ├── refs.pbxbtree.svn-base │ │ │ │ │ │ │ ├── subclasses.pbxbtree.svn-base │ │ │ │ │ │ │ └── symbols0.pbxsymbols.svn-base │ │ │ │ │ │ ├── categories.pbxbtree │ │ │ │ │ │ ├── cdecls.pbxbtree │ │ │ │ │ │ ├── decls.pbxbtree │ │ │ │ │ │ ├── files.pbxbtree │ │ │ │ │ │ ├── imports.pbxbtree │ │ │ │ │ │ ├── pbxindex.header │ │ │ │ │ │ ├── protocols.pbxbtree │ │ │ │ │ │ ├── refs.pbxbtree │ │ │ │ │ │ ├── strings.pbxstrings │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ ├── control.svn-base │ │ │ │ │ │ │ │ └── strings.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── control.svn-base │ │ │ │ │ │ │ │ └── strings.svn-base │ │ │ │ │ │ ├── control │ │ │ │ │ │ └── strings │ │ │ │ │ │ ├── subclasses.pbxbtree │ │ │ │ │ │ └── symbols0.pbxsymbols │ │ │ │ │ └── main.c │ │ │ └── Test │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ └── README.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── README │ │ │ │ └── TestiPhoneOS.xcodeproj │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ └── project.pbxproj │ │ ├── Xcode │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── mkxcode.csh.svn-base │ │ │ │ │ ├── package.svn-base │ │ │ │ │ ├── stationary.csh.svn-base │ │ │ │ │ └── uninstall.csh.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── mkxcode.csh.svn-base │ │ │ │ │ ├── package.svn-base │ │ │ │ │ ├── stationary.csh.svn-base │ │ │ │ │ └── uninstall.csh.svn-base │ │ │ ├── SDL │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── Info-Framework.plist.svn-base │ │ │ │ ├── Info-Framework.plist │ │ │ │ ├── SDL.xcodeproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ └── project.pbxproj │ │ │ │ └── pkg-support │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── Readme SDL Developer.txt.svn-base │ │ │ │ │ │ ├── SDL-devel.info.svn-base │ │ │ │ │ │ └── SDL.info.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Readme SDL Developer.txt.svn-base │ │ │ │ │ │ ├── SDL-devel.info.svn-base │ │ │ │ │ │ ├── SDL.info.svn-base │ │ │ │ │ │ └── sdl_logo.pdf.svn-base │ │ │ │ │ ├── Readme SDL Developer.txt │ │ │ │ │ ├── SDL-devel.info │ │ │ │ │ ├── SDL.info │ │ │ │ │ ├── devel-resources │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── ReadMe.txt.svn-base │ │ │ │ │ │ │ ├── Welcome.txt.svn-base │ │ │ │ │ │ │ └── install.sh.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── ReadMe.txt.svn-base │ │ │ │ │ │ │ ├── Welcome.txt.svn-base │ │ │ │ │ │ │ └── install.sh.svn-base │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── Welcome.txt │ │ │ │ │ └── install.sh │ │ │ │ │ ├── resources │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── License.rtf.svn-base │ │ │ │ │ │ │ ├── ReadMe.txt.svn-base │ │ │ │ │ │ │ └── SDL_DS_Store.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── License.rtf.svn-base │ │ │ │ │ │ │ ├── ReadMe.txt.svn-base │ │ │ │ │ │ │ ├── ReadMeDevLite.txt.svn-base │ │ │ │ │ │ │ ├── SDL_DS_Store.svn-base │ │ │ │ │ │ │ └── UniversalBinaryNotes.rtf.svn-base │ │ │ │ │ ├── License.rtf │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── ReadMeDevLite.txt │ │ │ │ │ ├── SDL_DS_Store │ │ │ │ │ └── UniversalBinaryNotes.rtf │ │ │ │ │ └── sdl_logo.pdf │ │ │ ├── SDLTest │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info-checkkeys__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-graywin__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-loopwave__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-test.plist.svn-base │ │ │ │ │ │ ├── Info-testalpha__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testatomic.plist.svn-base │ │ │ │ │ │ ├── Info-testaudioinfo.plist.svn-base │ │ │ │ │ │ ├── Info-testbitmap__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testblitspeed.plist.svn-base │ │ │ │ │ │ ├── Info-testcursor.plist.svn-base │ │ │ │ │ │ ├── Info-testdraw2.plist.svn-base │ │ │ │ │ │ ├── Info-testdyngl.plist.svn-base │ │ │ │ │ │ ├── Info-testerror__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testfile.plist.svn-base │ │ │ │ │ │ ├── Info-testgamma__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testgl2.plist.svn-base │ │ │ │ │ │ ├── Info-testgl__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testhaptic.plist.svn-base │ │ │ │ │ │ ├── Info-testiconv.plist.svn-base │ │ │ │ │ │ ├── Info-testime.plist.svn-base │ │ │ │ │ │ ├── Info-testintersections.plist.svn-base │ │ │ │ │ │ ├── Info-testjoystick__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testkeys__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testloadso.plist.svn-base │ │ │ │ │ │ ├── Info-testlock__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testmousetablet.plist.svn-base │ │ │ │ │ │ ├── Info-testmultiaudio.plist.svn-base │ │ │ │ │ │ ├── Info-testnativecocoa.plist.svn-base │ │ │ │ │ │ ├── Info-testnativex11.plist.svn-base │ │ │ │ │ │ ├── Info-testoverlay2.plist.svn-base │ │ │ │ │ │ ├── Info-testoverlay__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testpalette__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testplatform.plist.svn-base │ │ │ │ │ │ ├── Info-testpower.plist.svn-base │ │ │ │ │ │ ├── Info-testresample.plist.svn-base │ │ │ │ │ │ ├── Info-testsem__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testsprite2.plist.svn-base │ │ │ │ │ │ ├── Info-testsprite__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testthread__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testtimer__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testtypes__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testversion__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testvidinfo__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testwin__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-testwm2.plist.svn-base │ │ │ │ │ │ ├── Info-testwm__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-threadwin__Upgraded_.plist.svn-base │ │ │ │ │ │ ├── Info-torturethread__Upgraded_.plist.svn-base │ │ │ │ │ │ └── sdlcommon_prefix.h.svn-base │ │ │ │ ├── Info-checkkeys__Upgraded_.plist │ │ │ │ ├── Info-graywin__Upgraded_.plist │ │ │ │ ├── Info-loopwave__Upgraded_.plist │ │ │ │ ├── Info-test.plist │ │ │ │ ├── Info-testalpha__Upgraded_.plist │ │ │ │ ├── Info-testatomic.plist │ │ │ │ ├── Info-testaudioinfo.plist │ │ │ │ ├── Info-testbitmap__Upgraded_.plist │ │ │ │ ├── Info-testblitspeed.plist │ │ │ │ ├── Info-testcursor.plist │ │ │ │ ├── Info-testdraw2.plist │ │ │ │ ├── Info-testdyngl.plist │ │ │ │ ├── Info-testerror__Upgraded_.plist │ │ │ │ ├── Info-testfile.plist │ │ │ │ ├── Info-testgamma__Upgraded_.plist │ │ │ │ ├── Info-testgl2.plist │ │ │ │ ├── Info-testgl__Upgraded_.plist │ │ │ │ ├── Info-testhaptic.plist │ │ │ │ ├── Info-testiconv.plist │ │ │ │ ├── Info-testime.plist │ │ │ │ ├── Info-testintersections.plist │ │ │ │ ├── Info-testjoystick__Upgraded_.plist │ │ │ │ ├── Info-testkeys__Upgraded_.plist │ │ │ │ ├── Info-testloadso.plist │ │ │ │ ├── Info-testlock__Upgraded_.plist │ │ │ │ ├── Info-testmousetablet.plist │ │ │ │ ├── Info-testmultiaudio.plist │ │ │ │ ├── Info-testnativecocoa.plist │ │ │ │ ├── Info-testnativex11.plist │ │ │ │ ├── Info-testoverlay2.plist │ │ │ │ ├── Info-testoverlay__Upgraded_.plist │ │ │ │ ├── Info-testpalette__Upgraded_.plist │ │ │ │ ├── Info-testplatform.plist │ │ │ │ ├── Info-testpower.plist │ │ │ │ ├── Info-testresample.plist │ │ │ │ ├── Info-testsem__Upgraded_.plist │ │ │ │ ├── Info-testsprite2.plist │ │ │ │ ├── Info-testsprite__Upgraded_.plist │ │ │ │ ├── Info-testthread__Upgraded_.plist │ │ │ │ ├── Info-testtimer__Upgraded_.plist │ │ │ │ ├── Info-testtypes__Upgraded_.plist │ │ │ │ ├── Info-testversion__Upgraded_.plist │ │ │ │ ├── Info-testvidinfo__Upgraded_.plist │ │ │ │ ├── Info-testwin__Upgraded_.plist │ │ │ │ ├── Info-testwm2.plist │ │ │ │ ├── Info-testwm__Upgraded_.plist │ │ │ │ ├── Info-threadwin__Upgraded_.plist │ │ │ │ ├── Info-torturethread__Upgraded_.plist │ │ │ │ ├── SDLTest.xcodeproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ └── project.pbxproj │ │ │ │ └── sdlcommon_prefix.h │ │ │ ├── TemplatesForXcodeLeopard │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ ├── SDL Application │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch.svn-base │ │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── main.c │ │ │ │ ├── SDL Cocoa Application │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch.svn-base │ │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── SDLMain.nib │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── objects.nib.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── classes.nib.svn-base │ │ │ │ │ │ │ │ ├── info.nib.svn-base │ │ │ │ │ │ │ │ └── objects.nib.svn-base │ │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── main.c │ │ │ │ └── SDL OpenGL Application │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch.svn-base │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── TemplateIcon.icns.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── atlantis │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── atlantis.c.svn-base │ │ │ │ │ │ │ ├── atlantis.h.svn-base │ │ │ │ │ │ │ ├── dolphin.c.svn-base │ │ │ │ │ │ │ ├── shark.c.svn-base │ │ │ │ │ │ │ ├── swim.c.svn-base │ │ │ │ │ │ │ └── whale.c.svn-base │ │ │ │ │ ├── atlantis.c │ │ │ │ │ ├── atlantis.h │ │ │ │ │ ├── dolphin.c │ │ │ │ │ ├── shark.c │ │ │ │ │ ├── swim.c │ │ │ │ │ └── whale.c │ │ │ │ │ └── main.c │ │ │ ├── TemplatesForXcodeSnowLeopard │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ ├── SDL Application │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch.svn-base │ │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── main.c │ │ │ │ ├── SDL Cocoa Application │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch.svn-base │ │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── SDLMain.nib │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── objects.nib.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── classes.nib.svn-base │ │ │ │ │ │ │ │ ├── info.nib.svn-base │ │ │ │ │ │ │ │ └── objects.nib.svn-base │ │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── main.c │ │ │ │ └── SDL OpenGL Application │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch.svn-base │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── TemplateIcon.icns.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── TemplateIcon.icns.svn-base │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── atlantis │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── atlantis.c.svn-base │ │ │ │ │ │ │ ├── atlantis.h.svn-base │ │ │ │ │ │ │ ├── dolphin.c.svn-base │ │ │ │ │ │ │ ├── shark.c.svn-base │ │ │ │ │ │ │ ├── swim.c.svn-base │ │ │ │ │ │ │ └── whale.c.svn-base │ │ │ │ │ ├── atlantis.c │ │ │ │ │ ├── atlantis.h │ │ │ │ │ ├── dolphin.c │ │ │ │ │ ├── shark.c │ │ │ │ │ ├── swim.c │ │ │ │ │ └── whale.c │ │ │ │ │ └── main.c │ │ │ ├── TemplatesForXcodeTiger │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ ├── SDL Application │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ │ ├── SDLApp_Prefix.pch.svn-base │ │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── SDLApp.xcodeproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── SDLApp_Prefix.pch │ │ │ │ │ └── main.c │ │ │ │ ├── SDL Cocoa Application │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ │ ├── SDLApp_Prefix.pch.svn-base │ │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── SDLMain.nib │ │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── objects.nib.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── classes.nib.svn-base │ │ │ │ │ │ │ │ ├── info.nib.svn-base │ │ │ │ │ │ │ │ └── objects.nib.svn-base │ │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── SDLApp_Prefix.pch │ │ │ │ │ ├── SDLCocoaApp.xcodeproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── main.c │ │ │ │ └── SDL OpenGL Application │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── SDLApp_Prefix.pch.svn-base │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── SDLApp_Prefix.pch │ │ │ │ │ ├── SDLOpenGLApp.xcodeproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── TemplateInfo.plist.svn-base │ │ │ │ │ │ │ └── project.pbxproj.svn-base │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── atlantis │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── atlantis.c.svn-base │ │ │ │ │ │ │ ├── atlantis.h.svn-base │ │ │ │ │ │ │ ├── dolphin.c.svn-base │ │ │ │ │ │ │ ├── shark.c.svn-base │ │ │ │ │ │ │ ├── swim.c.svn-base │ │ │ │ │ │ │ └── whale.c.svn-base │ │ │ │ │ ├── atlantis.c │ │ │ │ │ ├── atlantis.h │ │ │ │ │ ├── dolphin.c │ │ │ │ │ ├── shark.c │ │ │ │ │ ├── swim.c │ │ │ │ │ └── whale.c │ │ │ │ │ └── main.c │ │ │ ├── XcodeDocSet │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── Doxyfile.svn-base │ │ │ │ └── Doxyfile │ │ │ ├── mkxcode.csh │ │ │ ├── package │ │ │ ├── stationary.csh │ │ │ └── uninstall.csh │ │ ├── acinclude │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── ac_check_define.m4.svn-base │ │ │ │ │ ├── alsa.m4.svn-base │ │ │ │ │ ├── esd.m4.svn-base │ │ │ │ │ ├── libtool.m4.svn-base │ │ │ │ │ ├── ltdl.m4.svn-base │ │ │ │ │ ├── ltoptions.m4.svn-base │ │ │ │ │ ├── ltsugar.m4.svn-base │ │ │ │ │ ├── ltversion.m4.svn-base │ │ │ │ │ └── lt~obsolete.m4.svn-base │ │ │ ├── ac_check_define.m4 │ │ │ ├── alsa.m4 │ │ │ ├── esd.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltdl.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── autogen.sh │ │ ├── build-scripts │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── config.guess.svn-base │ │ │ │ │ ├── config.sub.svn-base │ │ │ │ │ ├── fatbuild.sh.svn-base │ │ │ │ │ ├── install-sh.svn-base │ │ │ │ │ ├── ltmain.sh.svn-base │ │ │ │ │ ├── mkinstalldirs.svn-base │ │ │ │ │ ├── showrev.sh.svn-base │ │ │ │ │ ├── snapshot.sh.svn-base │ │ │ │ │ ├── strip_fPIC.sh.svn-base │ │ │ │ │ └── updaterev.sh.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── config.guess.svn-base │ │ │ │ │ ├── config.sub.svn-base │ │ │ │ │ ├── fatbuild.sh.svn-base │ │ │ │ │ ├── install-sh.svn-base │ │ │ │ │ ├── ltmain.sh.svn-base │ │ │ │ │ ├── mkinstalldirs.svn-base │ │ │ │ │ ├── showrev.sh.svn-base │ │ │ │ │ ├── snapshot.sh.svn-base │ │ │ │ │ ├── strip_fPIC.sh.svn-base │ │ │ │ │ └── updaterev.sh.svn-base │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── fatbuild.sh │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── mkinstalldirs │ │ │ ├── showrev.sh │ │ │ ├── snapshot.sh │ │ │ ├── strip_fPIC.sh │ │ │ └── updaterev.sh │ │ ├── configure.in │ │ ├── docs.html │ │ ├── include │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── SDL.h.svn-base │ │ │ │ │ ├── SDL_audio.h.svn-base │ │ │ │ │ ├── SDL_config.h.default.svn-base │ │ │ │ │ ├── SDL_config.h.in.svn-base │ │ │ │ │ ├── SDL_config_macosx.h.svn-base │ │ │ │ │ ├── SDL_config_minimal.h.svn-base │ │ │ │ │ ├── SDL_config_win32.h.svn-base │ │ │ │ │ ├── SDL_copying.h.svn-base │ │ │ │ │ ├── SDL_cpuinfo.h.svn-base │ │ │ │ │ ├── SDL_endian.h.svn-base │ │ │ │ │ ├── SDL_error.h.svn-base │ │ │ │ │ ├── SDL_events.h.svn-base │ │ │ │ │ ├── SDL_joystick.h.svn-base │ │ │ │ │ ├── SDL_keyboard.h.svn-base │ │ │ │ │ ├── SDL_keysym.h.svn-base │ │ │ │ │ ├── SDL_loadso.h.svn-base │ │ │ │ │ ├── SDL_main.h.svn-base │ │ │ │ │ ├── SDL_mouse.h.svn-base │ │ │ │ │ ├── SDL_mutex.h.svn-base │ │ │ │ │ ├── SDL_name.h.svn-base │ │ │ │ │ ├── SDL_opengl.h.svn-base │ │ │ │ │ ├── SDL_platform.h.svn-base │ │ │ │ │ ├── SDL_quit.h.svn-base │ │ │ │ │ ├── SDL_rwops.h.svn-base │ │ │ │ │ ├── SDL_stdinc.h.svn-base │ │ │ │ │ ├── SDL_syswm.h.svn-base │ │ │ │ │ ├── SDL_thread.h.svn-base │ │ │ │ │ ├── SDL_timer.h.svn-base │ │ │ │ │ ├── SDL_types.h.svn-base │ │ │ │ │ ├── SDL_version.h.svn-base │ │ │ │ │ ├── SDL_video.h.svn-base │ │ │ │ │ ├── begin_code.h.svn-base │ │ │ │ │ └── close_code.h.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── SDL.h.svn-base │ │ │ │ │ ├── SDL_atomic.h.svn-base │ │ │ │ │ ├── SDL_audio.h.svn-base │ │ │ │ │ ├── SDL_compat.h.svn-base │ │ │ │ │ ├── SDL_config.h.default.svn-base │ │ │ │ │ ├── SDL_config.h.in.svn-base │ │ │ │ │ ├── SDL_config_iphoneos.h.svn-base │ │ │ │ │ ├── SDL_config_macosx.h.svn-base │ │ │ │ │ ├── SDL_config_minimal.h.svn-base │ │ │ │ │ ├── SDL_config_nintendods.h.svn-base │ │ │ │ │ ├── SDL_config_pandora.h.svn-base │ │ │ │ │ ├── SDL_config_win32.h.svn-base │ │ │ │ │ ├── SDL_config_wiz.h.svn-base │ │ │ │ │ ├── SDL_copying.h.svn-base │ │ │ │ │ ├── SDL_cpuinfo.h.svn-base │ │ │ │ │ ├── SDL_endian.h.svn-base │ │ │ │ │ ├── SDL_error.h.svn-base │ │ │ │ │ ├── SDL_events.h.svn-base │ │ │ │ │ ├── SDL_haptic.h.svn-base │ │ │ │ │ ├── SDL_joystick.h.svn-base │ │ │ │ │ ├── SDL_keyboard.h.svn-base │ │ │ │ │ ├── SDL_keysym.h.svn-base │ │ │ │ │ ├── SDL_loadso.h.svn-base │ │ │ │ │ ├── SDL_main.h.svn-base │ │ │ │ │ ├── SDL_mouse.h.svn-base │ │ │ │ │ ├── SDL_mutex.h.svn-base │ │ │ │ │ ├── SDL_name.h.svn-base │ │ │ │ │ ├── SDL_opengl.h.svn-base │ │ │ │ │ ├── SDL_opengles.h.svn-base │ │ │ │ │ ├── SDL_pixels.h.svn-base │ │ │ │ │ ├── SDL_platform.h.svn-base │ │ │ │ │ ├── SDL_power.h.svn-base │ │ │ │ │ ├── SDL_quit.h.svn-base │ │ │ │ │ ├── SDL_rect.h.svn-base │ │ │ │ │ ├── SDL_rwops.h.svn-base │ │ │ │ │ ├── SDL_scancode.h.svn-base │ │ │ │ │ ├── SDL_stdinc.h.svn-base │ │ │ │ │ ├── SDL_surface.h.svn-base │ │ │ │ │ ├── SDL_syswm.h.svn-base │ │ │ │ │ ├── SDL_thread.h.svn-base │ │ │ │ │ ├── SDL_timer.h.svn-base │ │ │ │ │ ├── SDL_types.h.svn-base │ │ │ │ │ ├── SDL_version.h.svn-base │ │ │ │ │ ├── SDL_video.h.svn-base │ │ │ │ │ ├── begin_code.h.svn-base │ │ │ │ │ ├── close_code.h.svn-base │ │ │ │ │ └── doxyfile.svn-base │ │ │ ├── SDL.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_compat.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config.h.default │ │ │ ├── SDL_config.h.generated │ │ │ ├── SDL_config.h.in │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_nintendods.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_win32.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keysym.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ ├── close_code.h │ │ │ └── doxyfile │ │ ├── sdl-config.in │ │ ├── sdl.m4 │ │ ├── sdl.pc.in │ │ ├── src │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── SDL.c.svn-base │ │ │ │ │ ├── SDL_error.c.svn-base │ │ │ │ │ ├── SDL_error_c.h.svn-base │ │ │ │ │ ├── SDL_fatal.c.svn-base │ │ │ │ │ └── SDL_fatal.h.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── SDL.c.svn-base │ │ │ │ │ ├── SDL_compat.c.svn-base │ │ │ │ │ ├── SDL_error.c.svn-base │ │ │ │ │ ├── SDL_error_c.h.svn-base │ │ │ │ │ ├── SDL_fatal.c.svn-base │ │ │ │ │ └── SDL_fatal.h.svn-base │ │ │ ├── SDL.c │ │ │ ├── SDL_compat.c │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_fatal.c │ │ │ ├── SDL_fatal.h │ │ │ ├── atomic │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ ├── dummy │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_atomic.c.svn-base │ │ │ │ │ └── SDL_atomic.c │ │ │ │ ├── linux │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_atomic.c.svn-base │ │ │ │ │ └── SDL_atomic.c │ │ │ │ ├── macosx │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_atomic.c.svn-base │ │ │ │ │ └── SDL_atomic.c │ │ │ │ ├── qnx │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_atomic.c.svn-base │ │ │ │ │ └── SDL_atomic.c │ │ │ │ └── win32 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── SDL_atomic.c.svn-base │ │ │ │ │ └── SDL_atomic.c │ │ │ ├── audio │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_audio.c.svn-base │ │ │ │ │ │ ├── SDL_audio_c.h.svn-base │ │ │ │ │ │ ├── SDL_audiocvt.c.svn-base │ │ │ │ │ │ ├── SDL_audiodev.c.svn-base │ │ │ │ │ │ ├── SDL_audiodev_c.h.svn-base │ │ │ │ │ │ ├── SDL_audiomem.h.svn-base │ │ │ │ │ │ ├── SDL_mixer.c.svn-base │ │ │ │ │ │ ├── SDL_mixer_MMX.c.svn-base │ │ │ │ │ │ ├── SDL_mixer_MMX.h.svn-base │ │ │ │ │ │ ├── SDL_mixer_MMX_VC.c.svn-base │ │ │ │ │ │ ├── SDL_mixer_MMX_VC.h.svn-base │ │ │ │ │ │ ├── SDL_mixer_m68k.c.svn-base │ │ │ │ │ │ ├── SDL_mixer_m68k.h.svn-base │ │ │ │ │ │ ├── SDL_sysaudio.h.svn-base │ │ │ │ │ │ ├── SDL_wave.c.svn-base │ │ │ │ │ │ ├── SDL_wave.h.svn-base │ │ │ │ │ │ └── sdlgenaudiocvt.pl.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_audio.c.svn-base │ │ │ │ │ │ ├── SDL_audio_c.h.svn-base │ │ │ │ │ │ ├── SDL_audiocvt.c.svn-base │ │ │ │ │ │ ├── SDL_audiodev.c.svn-base │ │ │ │ │ │ ├── SDL_audiodev_c.h.svn-base │ │ │ │ │ │ ├── SDL_audiomem.h.svn-base │ │ │ │ │ │ ├── SDL_audiotypecvt.c.svn-base │ │ │ │ │ │ ├── SDL_mixer.c.svn-base │ │ │ │ │ │ ├── SDL_mixer_MMX.c.svn-base │ │ │ │ │ │ ├── SDL_mixer_MMX.h.svn-base │ │ │ │ │ │ ├── SDL_mixer_MMX_VC.c.svn-base │ │ │ │ │ │ ├── SDL_mixer_MMX_VC.h.svn-base │ │ │ │ │ │ ├── SDL_mixer_m68k.c.svn-base │ │ │ │ │ │ ├── SDL_mixer_m68k.h.svn-base │ │ │ │ │ │ ├── SDL_sysaudio.h.svn-base │ │ │ │ │ │ ├── SDL_wave.c.svn-base │ │ │ │ │ │ ├── SDL_wave.h.svn-base │ │ │ │ │ │ └── sdlgenaudiocvt.pl.svn-base │ │ │ │ ├── SDL_audio.c │ │ │ │ ├── SDL_audio_c.h │ │ │ │ ├── SDL_audiocvt.c │ │ │ │ ├── SDL_audiodev.c │ │ │ │ ├── SDL_audiodev_c.h │ │ │ │ ├── SDL_audiomem.h │ │ │ │ ├── SDL_audiotypecvt.c │ │ │ │ ├── SDL_mixer.c │ │ │ │ ├── SDL_mixer_MMX.c │ │ │ │ ├── SDL_mixer_MMX.h │ │ │ │ ├── SDL_mixer_MMX_VC.c │ │ │ │ ├── SDL_mixer_MMX_VC.h │ │ │ │ ├── SDL_mixer_m68k.c │ │ │ │ ├── SDL_mixer_m68k.h │ │ │ │ ├── SDL_sysaudio.h │ │ │ │ ├── SDL_wave.c │ │ │ │ ├── SDL_wave.h │ │ │ │ ├── alsa │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_alsa_audio.c.svn-base │ │ │ │ │ │ │ └── SDL_alsa_audio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_alsa_audio.c.svn-base │ │ │ │ │ │ │ └── SDL_alsa_audio.h.svn-base │ │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ │ └── SDL_alsa_audio.h │ │ │ │ ├── arts │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_artsaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_artsaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_artsaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_artsaudio.h.svn-base │ │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ │ └── SDL_artsaudio.h │ │ │ │ ├── baudio │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_beaudio.cc.svn-base │ │ │ │ │ │ │ └── SDL_beaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_beaudio.cc.svn-base │ │ │ │ │ │ │ └── SDL_beaudio.h.svn-base │ │ │ │ │ ├── SDL_beaudio.cc │ │ │ │ │ └── SDL_beaudio.h │ │ │ │ ├── bsd │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_bsdaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_bsdaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_bsdaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_bsdaudio.h.svn-base │ │ │ │ │ ├── SDL_bsdaudio.c │ │ │ │ │ └── SDL_bsdaudio.h │ │ │ │ ├── disk │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_diskaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_diskaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_diskaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_diskaudio.h.svn-base │ │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ │ └── SDL_diskaudio.h │ │ │ │ ├── dma │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_dmaaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_dmaaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_dmaaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_dmaaudio.h.svn-base │ │ │ │ │ ├── SDL_dmaaudio.c │ │ │ │ │ └── SDL_dmaaudio.h │ │ │ │ ├── dmedia │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_irixaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_irixaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_irixaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_irixaudio.h.svn-base │ │ │ │ │ ├── SDL_irixaudio.c │ │ │ │ │ └── SDL_irixaudio.h │ │ │ │ ├── dsp │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_dspaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_dspaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_dspaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_dspaudio.h.svn-base │ │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ │ └── SDL_dspaudio.h │ │ │ │ ├── dummy │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_dummyaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_dummyaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_dummyaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_dummyaudio.h.svn-base │ │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ │ └── SDL_dummyaudio.h │ │ │ │ ├── esd │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_esdaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_esdaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_esdaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_esdaudio.h.svn-base │ │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ │ └── SDL_esdaudio.h │ │ │ │ ├── fusionsound │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_fsaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_fsaudio.h.svn-base │ │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ │ └── SDL_fsaudio.h │ │ │ │ ├── iphoneos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_coreaudio_iphone.c.svn-base │ │ │ │ │ │ │ └── SDL_coreaudio_iphone.h.svn-base │ │ │ │ │ ├── SDL_coreaudio_iphone.c │ │ │ │ │ └── SDL_coreaudio_iphone.h │ │ │ │ ├── macosx │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_coreaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_coreaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_coreaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_coreaudio.h.svn-base │ │ │ │ │ ├── SDL_coreaudio.c │ │ │ │ │ └── SDL_coreaudio.h │ │ │ │ ├── mme │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_mmeaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_mmeaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_mmeaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_mmeaudio.h.svn-base │ │ │ │ │ ├── SDL_mmeaudio.c │ │ │ │ │ └── SDL_mmeaudio.h │ │ │ │ ├── nas │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_nasaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_nasaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_nasaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_nasaudio.h.svn-base │ │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ │ └── SDL_nasaudio.h │ │ │ │ ├── nds │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_ndsaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_ndsaudio.h.svn-base │ │ │ │ │ ├── SDL_ndsaudio.c │ │ │ │ │ └── SDL_ndsaudio.h │ │ │ │ ├── paudio │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_paudio.c.svn-base │ │ │ │ │ │ │ └── SDL_paudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_paudio.c.svn-base │ │ │ │ │ │ │ └── SDL_paudio.h.svn-base │ │ │ │ │ ├── SDL_paudio.c │ │ │ │ │ └── SDL_paudio.h │ │ │ │ ├── pulseaudio │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_pulseaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_pulseaudio.h.svn-base │ │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ │ └── SDL_pulseaudio.h │ │ │ │ ├── qsa │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_qsa_audio.c.svn-base │ │ │ │ │ │ │ └── SDL_qsa_audio.h.svn-base │ │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ │ └── SDL_qsa_audio.h │ │ │ │ ├── sdlgenaudiocvt.pl │ │ │ │ ├── sun │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_sunaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_sunaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_sunaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_sunaudio.h.svn-base │ │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ │ └── SDL_sunaudio.h │ │ │ │ ├── ums │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_umsaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_umsaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_umsaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_umsaudio.h.svn-base │ │ │ │ │ ├── SDL_umsaudio.c │ │ │ │ │ └── SDL_umsaudio.h │ │ │ │ ├── windib │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_dibaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_dibaudio.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_dibaudio.c.svn-base │ │ │ │ │ │ │ └── SDL_dibaudio.h.svn-base │ │ │ │ │ ├── SDL_dibaudio.c │ │ │ │ │ └── SDL_dibaudio.h │ │ │ │ └── windx5 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_dx5audio.c.svn-base │ │ │ │ │ │ ├── SDL_dx5audio.h.svn-base │ │ │ │ │ │ └── directx.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_dx5audio.c.svn-base │ │ │ │ │ │ ├── SDL_dx5audio.h.svn-base │ │ │ │ │ │ └── directx.h.svn-base │ │ │ │ │ ├── SDL_dx5audio.c │ │ │ │ │ ├── SDL_dx5audio.h │ │ │ │ │ └── directx.h │ │ │ ├── cpuinfo │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── SDL_cpuinfo.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── SDL_cpuinfo.c.svn-base │ │ │ │ └── SDL_cpuinfo.c │ │ │ ├── events │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_events.c.svn-base │ │ │ │ │ │ ├── SDL_events_c.h.svn-base │ │ │ │ │ │ ├── SDL_keyboard.c.svn-base │ │ │ │ │ │ ├── SDL_mouse.c.svn-base │ │ │ │ │ │ ├── SDL_quit.c.svn-base │ │ │ │ │ │ ├── SDL_sysevents.h.svn-base │ │ │ │ │ │ ├── blank_cursor.h.svn-base │ │ │ │ │ │ └── default_cursor.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_events.c.svn-base │ │ │ │ │ │ ├── SDL_events_c.h.svn-base │ │ │ │ │ │ ├── SDL_keyboard.c.svn-base │ │ │ │ │ │ ├── SDL_keyboard_c.h.svn-base │ │ │ │ │ │ ├── SDL_mouse.c.svn-base │ │ │ │ │ │ ├── SDL_mouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_quit.c.svn-base │ │ │ │ │ │ ├── SDL_sysevents.h.svn-base │ │ │ │ │ │ ├── SDL_windowevents.c.svn-base │ │ │ │ │ │ ├── SDL_windowevents_c.h.svn-base │ │ │ │ │ │ ├── blank_cursor.h.svn-base │ │ │ │ │ │ ├── default_cursor.h.svn-base │ │ │ │ │ │ ├── scancodes_darwin.h.svn-base │ │ │ │ │ │ ├── scancodes_linux.h.svn-base │ │ │ │ │ │ ├── scancodes_win32.h.svn-base │ │ │ │ │ │ └── scancodes_xfree86.h.svn-base │ │ │ │ ├── SDL_events.c │ │ │ │ ├── SDL_events_c.h │ │ │ │ ├── SDL_keyboard.c │ │ │ │ ├── SDL_keyboard_c.h │ │ │ │ ├── SDL_mouse.c │ │ │ │ ├── SDL_mouse_c.h │ │ │ │ ├── SDL_quit.c │ │ │ │ ├── SDL_sysevents.h │ │ │ │ ├── SDL_windowevents.c │ │ │ │ ├── SDL_windowevents_c.h │ │ │ │ ├── blank_cursor.h │ │ │ │ ├── default_cursor.h │ │ │ │ ├── scancodes_darwin.h │ │ │ │ ├── scancodes_linux.h │ │ │ │ ├── scancodes_win32.h │ │ │ │ └── scancodes_xfree86.h │ │ │ ├── file │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── SDL_rwops.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── SDL_rwops.c.svn-base │ │ │ │ └── SDL_rwops.c │ │ │ ├── haptic │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_haptic.c.svn-base │ │ │ │ │ │ └── SDL_syshaptic.h.svn-base │ │ │ │ ├── SDL_haptic.c │ │ │ │ ├── SDL_syshaptic.h │ │ │ │ ├── darwin │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_syshaptic.c.svn-base │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ ├── dummy │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_syshaptic.c.svn-base │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ ├── linux │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_syshaptic.c.svn-base │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ ├── nds │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_syshaptic.c.svn-base │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ └── win32 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── SDL_syshaptic.c.svn-base │ │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── joystick │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_joystick.c.svn-base │ │ │ │ │ │ ├── SDL_joystick_c.h.svn-base │ │ │ │ │ │ └── SDL_sysjoystick.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_joystick.c.svn-base │ │ │ │ │ │ ├── SDL_joystick_c.h.svn-base │ │ │ │ │ │ └── SDL_sysjoystick.h.svn-base │ │ │ │ ├── SDL_joystick.c │ │ │ │ ├── SDL_joystick_c.h │ │ │ │ ├── SDL_sysjoystick.h │ │ │ │ ├── beos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_bejoystick.cc.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_bejoystick.cc.svn-base │ │ │ │ │ └── SDL_bejoystick.cc │ │ │ │ ├── bsd │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── darwin │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_sysjoystick.c.svn-base │ │ │ │ │ │ │ └── SDL_sysjoystick_c.h.svn-base │ │ │ │ │ ├── 10.3.9-FIX │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── IOHIDLib.h.svn-base │ │ │ │ │ │ └── IOHIDLib.h │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── dummy │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── iphoneos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDLUIAccelerationDelegate.h.svn-base │ │ │ │ │ │ │ ├── SDLUIAccelerationDelegate.m.svn-base │ │ │ │ │ │ │ └── SDL_sysjoystick.m.svn-base │ │ │ │ │ ├── SDLUIAccelerationDelegate.h │ │ │ │ │ ├── SDLUIAccelerationDelegate.m │ │ │ │ │ └── SDL_sysjoystick.m │ │ │ │ ├── linux │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_sysjoystick.c.svn-base │ │ │ │ │ │ │ └── SDL_sysjoystick_c.h.svn-base │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── nds │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── riscos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_sysjoystick.c.svn-base │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ └── win32 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── SDL_mmjoystick.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_dxjoystick.c.svn-base │ │ │ │ │ │ ├── SDL_dxjoystick_c.h.svn-base │ │ │ │ │ │ └── SDL_mmjoystick.c.svn-base │ │ │ │ │ ├── SDL_dxjoystick.c │ │ │ │ │ ├── SDL_dxjoystick_c.h │ │ │ │ │ └── SDL_mmjoystick.c │ │ │ ├── libm │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── e_log.c.svn-base │ │ │ │ │ │ ├── e_pow.c.svn-base │ │ │ │ │ │ ├── e_rem_pio2.c.svn-base │ │ │ │ │ │ ├── e_sqrt.c.svn-base │ │ │ │ │ │ ├── k_cos.c.svn-base │ │ │ │ │ │ ├── k_rem_pio2.c.svn-base │ │ │ │ │ │ ├── k_sin.c.svn-base │ │ │ │ │ │ ├── math.h.svn-base │ │ │ │ │ │ ├── math_private.h.svn-base │ │ │ │ │ │ ├── s_copysign.c.svn-base │ │ │ │ │ │ ├── s_cos.c.svn-base │ │ │ │ │ │ ├── s_fabs.c.svn-base │ │ │ │ │ │ ├── s_floor.c.svn-base │ │ │ │ │ │ ├── s_scalbn.c.svn-base │ │ │ │ │ │ └── s_sin.c.svn-base │ │ │ │ ├── e_log.c │ │ │ │ ├── e_pow.c │ │ │ │ ├── e_rem_pio2.c │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── k_cos.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_sin.c │ │ │ │ ├── math.h │ │ │ │ ├── math_private.h │ │ │ │ ├── s_copysign.c │ │ │ │ ├── s_cos.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_scalbn.c │ │ │ │ └── s_sin.c │ │ │ ├── loadso │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ ├── beos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_sysloadso.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_sysloadso.c.svn-base │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── dlopen │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_sysloadso.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_sysloadso.c.svn-base │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── dummy │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_sysloadso.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_sysloadso.c.svn-base │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── macosx │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_dlcompat.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_dlcompat.c.svn-base │ │ │ │ │ └── SDL_dlcompat.c │ │ │ │ └── win32 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── SDL_sysloadso.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── SDL_sysloadso.c.svn-base │ │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── main │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ └── entries │ │ │ │ ├── beos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_BeApp.cc.svn-base │ │ │ │ │ │ │ └── SDL_BeApp.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_BeApp.cc.svn-base │ │ │ │ │ │ │ └── SDL_BeApp.h.svn-base │ │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ │ └── SDL_BeApp.h │ │ │ │ ├── dummy │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_dummy_main.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_dummy_main.c.svn-base │ │ │ │ │ └── SDL_dummy_main.c │ │ │ │ └── win32 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── SDL_win32_main.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_win32_main.c.svn-base │ │ │ │ │ │ └── version.rc.svn-base │ │ │ │ │ ├── SDL_win32_main.c │ │ │ │ │ └── version.rc │ │ │ ├── power │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── SDL_power.c.svn-base │ │ │ │ ├── SDL_power.c │ │ │ │ ├── beos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_syspower.c.svn-base │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── linux │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_syspower.c.svn-base │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── macosx │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_syspower.c.svn-base │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── nds │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_syspower.c.svn-base │ │ │ │ │ └── SDL_syspower.c │ │ │ │ └── windows │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── SDL_syspower.c.svn-base │ │ │ │ │ └── SDL_syspower.c │ │ │ ├── stdlib │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_getenv.c.svn-base │ │ │ │ │ │ ├── SDL_iconv.c.svn-base │ │ │ │ │ │ ├── SDL_malloc.c.svn-base │ │ │ │ │ │ ├── SDL_qsort.c.svn-base │ │ │ │ │ │ ├── SDL_stdlib.c.svn-base │ │ │ │ │ │ └── SDL_string.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_getenv.c.svn-base │ │ │ │ │ │ ├── SDL_iconv.c.svn-base │ │ │ │ │ │ ├── SDL_malloc.c.svn-base │ │ │ │ │ │ ├── SDL_qsort.c.svn-base │ │ │ │ │ │ ├── SDL_stdlib.c.svn-base │ │ │ │ │ │ └── SDL_string.c.svn-base │ │ │ │ ├── SDL_getenv.c │ │ │ │ ├── SDL_iconv.c │ │ │ │ ├── SDL_malloc.c │ │ │ │ ├── SDL_qsort.c │ │ │ │ ├── SDL_stdlib.c │ │ │ │ └── SDL_string.c │ │ │ ├── thread │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_systhread.h.svn-base │ │ │ │ │ │ ├── SDL_thread.c.svn-base │ │ │ │ │ │ └── SDL_thread_c.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_systhread.h.svn-base │ │ │ │ │ │ ├── SDL_thread.c.svn-base │ │ │ │ │ │ └── SDL_thread_c.h.svn-base │ │ │ │ ├── SDL_systhread.h │ │ │ │ ├── SDL_thread.c │ │ │ │ ├── SDL_thread_c.h │ │ │ │ ├── beos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── generic │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── irix │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── nds │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_syscond_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_syssem_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_syscond_c.h │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_syssem_c.h │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── pth │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── pthread │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── riscos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── SDL_syscond.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ │ ├── SDL_sysmutex_c.h.svn-base │ │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ │ └── SDL_systhread_c.h.svn-base │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ └── win32 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ ├── SDL_systhread_c.h.svn-base │ │ │ │ │ │ ├── win_ce_semaphore.c.svn-base │ │ │ │ │ │ └── win_ce_semaphore.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_sysmutex.c.svn-base │ │ │ │ │ │ ├── SDL_syssem.c.svn-base │ │ │ │ │ │ ├── SDL_systhread.c.svn-base │ │ │ │ │ │ ├── SDL_systhread_c.h.svn-base │ │ │ │ │ │ ├── win_ce_semaphore.c.svn-base │ │ │ │ │ │ └── win_ce_semaphore.h.svn-base │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ ├── win_ce_semaphore.c │ │ │ │ │ └── win_ce_semaphore.h │ │ │ ├── timer │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_systimer.h.svn-base │ │ │ │ │ │ ├── SDL_timer.c.svn-base │ │ │ │ │ │ └── SDL_timer_c.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_systimer.h.svn-base │ │ │ │ │ │ ├── SDL_timer.c.svn-base │ │ │ │ │ │ └── SDL_timer_c.h.svn-base │ │ │ │ ├── SDL_systimer.h │ │ │ │ ├── SDL_timer.c │ │ │ │ ├── SDL_timer_c.h │ │ │ │ ├── beos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── dummy │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── nds │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── riscos │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── unix │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── win32 │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ └── SDL_systimer.c │ │ │ │ └── wince │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── SDL_systimer.c.svn-base │ │ │ │ │ └── SDL_systimer.c │ │ │ └── video │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── SDL_RLEaccel.c.svn-base │ │ │ │ │ ├── SDL_RLEaccel_c.h.svn-base │ │ │ │ │ ├── SDL_blit.c.svn-base │ │ │ │ │ ├── SDL_blit.h.svn-base │ │ │ │ │ ├── SDL_blit_0.c.svn-base │ │ │ │ │ ├── SDL_blit_1.c.svn-base │ │ │ │ │ ├── SDL_blit_A.c.svn-base │ │ │ │ │ ├── SDL_blit_N.c.svn-base │ │ │ │ │ ├── SDL_blit_slow.c.svn-base │ │ │ │ │ ├── SDL_bmp.c.svn-base │ │ │ │ │ ├── SDL_fillrect.c.svn-base │ │ │ │ │ ├── SDL_gamma.c.svn-base │ │ │ │ │ ├── SDL_glfuncs.h.svn-base │ │ │ │ │ ├── SDL_leaks.h.svn-base │ │ │ │ │ ├── SDL_pixels.c.svn-base │ │ │ │ │ ├── SDL_pixels_c.h.svn-base │ │ │ │ │ ├── SDL_stretch.c.svn-base │ │ │ │ │ ├── SDL_surface.c.svn-base │ │ │ │ │ ├── SDL_sysvideo.h.svn-base │ │ │ │ │ ├── SDL_video.c.svn-base │ │ │ │ │ ├── SDL_yuv_mmx.c.svn-base │ │ │ │ │ ├── SDL_yuv_sw.c.svn-base │ │ │ │ │ ├── SDL_yuv_sw_c.h.svn-base │ │ │ │ │ ├── mmx.h.svn-base │ │ │ │ │ └── sdlgenblit.pl.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── SDL_RLEaccel.c.svn-base │ │ │ │ │ ├── SDL_RLEaccel_c.h.svn-base │ │ │ │ │ ├── SDL_alphamult.c.svn-base │ │ │ │ │ ├── SDL_alphamult.h.svn-base │ │ │ │ │ ├── SDL_blendline.c.svn-base │ │ │ │ │ ├── SDL_blendpoint.c.svn-base │ │ │ │ │ ├── SDL_blendrect.c.svn-base │ │ │ │ │ ├── SDL_blit.c.svn-base │ │ │ │ │ ├── SDL_blit.h.svn-base │ │ │ │ │ ├── SDL_blit_0.c.svn-base │ │ │ │ │ ├── SDL_blit_1.c.svn-base │ │ │ │ │ ├── SDL_blit_A.c.svn-base │ │ │ │ │ ├── SDL_blit_N.c.svn-base │ │ │ │ │ ├── SDL_blit_auto.c.svn-base │ │ │ │ │ ├── SDL_blit_auto.h.svn-base │ │ │ │ │ ├── SDL_blit_copy.c.svn-base │ │ │ │ │ ├── SDL_blit_copy.h.svn-base │ │ │ │ │ ├── SDL_blit_slow.c.svn-base │ │ │ │ │ ├── SDL_blit_slow.h.svn-base │ │ │ │ │ ├── SDL_bmp.c.svn-base │ │ │ │ │ ├── SDL_draw.h.svn-base │ │ │ │ │ ├── SDL_drawline.c.svn-base │ │ │ │ │ ├── SDL_drawpoint.c.svn-base │ │ │ │ │ ├── SDL_fillrect.c.svn-base │ │ │ │ │ ├── SDL_gamma.c.svn-base │ │ │ │ │ ├── SDL_glesfuncs.h.svn-base │ │ │ │ │ ├── SDL_glfuncs.h.svn-base │ │ │ │ │ ├── SDL_leaks.h.svn-base │ │ │ │ │ ├── SDL_pixels.c.svn-base │ │ │ │ │ ├── SDL_pixels_c.h.svn-base │ │ │ │ │ ├── SDL_rect.c.svn-base │ │ │ │ │ ├── SDL_rect_c.h.svn-base │ │ │ │ │ ├── SDL_renderer_gl.c.svn-base │ │ │ │ │ ├── SDL_renderer_gl.h.svn-base │ │ │ │ │ ├── SDL_renderer_gles.c.svn-base │ │ │ │ │ ├── SDL_renderer_gles.h.svn-base │ │ │ │ │ ├── SDL_renderer_sw.c.svn-base │ │ │ │ │ ├── SDL_renderer_sw.h.svn-base │ │ │ │ │ ├── SDL_stretch.c.svn-base │ │ │ │ │ ├── SDL_surface.c.svn-base │ │ │ │ │ ├── SDL_sysvideo.h.svn-base │ │ │ │ │ ├── SDL_video.c.svn-base │ │ │ │ │ ├── SDL_yuv_mmx.c.svn-base │ │ │ │ │ ├── SDL_yuv_sw.c.svn-base │ │ │ │ │ ├── SDL_yuv_sw_c.h.svn-base │ │ │ │ │ ├── mmx.h.svn-base │ │ │ │ │ └── sdlgenblit.pl.svn-base │ │ │ │ ├── SDL_RLEaccel.c │ │ │ │ ├── SDL_RLEaccel_c.h │ │ │ │ ├── SDL_alphamult.c │ │ │ │ ├── SDL_alphamult.h │ │ │ │ ├── SDL_blendline.c │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ ├── SDL_blendrect.c │ │ │ │ ├── SDL_blit.c │ │ │ │ ├── SDL_blit.h │ │ │ │ ├── SDL_blit_0.c │ │ │ │ ├── SDL_blit_1.c │ │ │ │ ├── SDL_blit_A.c │ │ │ │ ├── SDL_blit_N.c │ │ │ │ ├── SDL_blit_auto.c │ │ │ │ ├── SDL_blit_auto.h │ │ │ │ ├── SDL_blit_copy.c │ │ │ │ ├── SDL_blit_copy.h │ │ │ │ ├── SDL_blit_slow.c │ │ │ │ ├── SDL_blit_slow.h │ │ │ │ ├── SDL_bmp.c │ │ │ │ ├── SDL_draw.h │ │ │ │ ├── SDL_drawline.c │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ ├── SDL_fillrect.c │ │ │ │ ├── SDL_gamma.c │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ ├── SDL_leaks.h │ │ │ │ ├── SDL_pixels.c │ │ │ │ ├── SDL_pixels_c.h │ │ │ │ ├── SDL_rect.c │ │ │ │ ├── SDL_rect_c.h │ │ │ │ ├── SDL_renderer_gl.c │ │ │ │ ├── SDL_renderer_gl.h │ │ │ │ ├── SDL_renderer_gles.c │ │ │ │ ├── SDL_renderer_gles.h │ │ │ │ ├── SDL_renderer_sw.c │ │ │ │ ├── SDL_renderer_sw.h │ │ │ │ ├── SDL_stretch.c │ │ │ │ ├── SDL_surface.c │ │ │ │ ├── SDL_sysvideo.h │ │ │ │ ├── SDL_video.c │ │ │ │ ├── SDL_yuv_mmx.c │ │ │ │ ├── SDL_yuv_sw.c │ │ │ │ ├── SDL_yuv_sw_c.h │ │ │ │ ├── Xext │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── README.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── README.svn-base │ │ │ │ ├── README │ │ │ │ ├── XME │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── xme.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── xme.c.svn-base │ │ │ │ │ └── xme.c │ │ │ │ ├── Xinerama │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── Xinerama.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── Xinerama.c.svn-base │ │ │ │ │ └── Xinerama.c │ │ │ │ ├── XmuStdCmap │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── AllCmap.c.svn-base │ │ │ │ │ │ │ ├── CmapAlloc.c.svn-base │ │ │ │ │ │ │ ├── CrCmap.c.svn-base │ │ │ │ │ │ │ ├── DelCmap.c.svn-base │ │ │ │ │ │ │ ├── Distinct.c.svn-base │ │ │ │ │ │ │ ├── LookupCmap.c.svn-base │ │ │ │ │ │ │ ├── StdCmap.c.svn-base │ │ │ │ │ │ │ └── VisCmap.c.svn-base │ │ │ │ │ ├── AllCmap.c │ │ │ │ │ ├── CmapAlloc.c │ │ │ │ │ ├── CrCmap.c │ │ │ │ │ ├── DelCmap.c │ │ │ │ │ ├── Distinct.c │ │ │ │ │ ├── LookupCmap.c │ │ │ │ │ ├── StdCmap.c │ │ │ │ │ └── VisCmap.c │ │ │ │ ├── Xv │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── Xv.c.svn-base │ │ │ │ │ │ │ └── Xvlibint.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Xv.c.svn-base │ │ │ │ │ │ │ └── Xvlibint.h.svn-base │ │ │ │ │ ├── Xv.c │ │ │ │ │ └── Xvlibint.h │ │ │ │ ├── Xxf86vm │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── XF86VMode.c.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── XF86VMode.c.svn-base │ │ │ │ │ └── XF86VMode.c │ │ │ │ └── extensions │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── Xext.h.svn-base │ │ │ │ │ │ ├── Xinerama.h.svn-base │ │ │ │ │ │ ├── Xv.h.svn-base │ │ │ │ │ │ ├── Xvlib.h.svn-base │ │ │ │ │ │ ├── Xvproto.h.svn-base │ │ │ │ │ │ ├── extutil.h.svn-base │ │ │ │ │ │ ├── panoramiXext.h.svn-base │ │ │ │ │ │ ├── panoramiXproto.h.svn-base │ │ │ │ │ │ ├── xf86dga.h.svn-base │ │ │ │ │ │ ├── xf86dga1.h.svn-base │ │ │ │ │ │ ├── xf86dga1str.h.svn-base │ │ │ │ │ │ ├── xf86dgastr.h.svn-base │ │ │ │ │ │ ├── xf86vmode.h.svn-base │ │ │ │ │ │ └── xf86vmstr.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── StdCmap.h.svn-base │ │ │ │ │ │ ├── Xext.h.svn-base │ │ │ │ │ │ ├── Xinerama.h.svn-base │ │ │ │ │ │ ├── Xv.h.svn-base │ │ │ │ │ │ ├── Xvlib.h.svn-base │ │ │ │ │ │ ├── Xvproto.h.svn-base │ │ │ │ │ │ ├── extutil.h.svn-base │ │ │ │ │ │ ├── panoramiXext.h.svn-base │ │ │ │ │ │ ├── panoramiXproto.h.svn-base │ │ │ │ │ │ ├── xf86dga.h.svn-base │ │ │ │ │ │ ├── xf86dga1.h.svn-base │ │ │ │ │ │ ├── xf86dga1str.h.svn-base │ │ │ │ │ │ ├── xf86dgastr.h.svn-base │ │ │ │ │ │ ├── xf86vmode.h.svn-base │ │ │ │ │ │ └── xf86vmstr.h.svn-base │ │ │ │ │ ├── StdCmap.h │ │ │ │ │ ├── Xext.h │ │ │ │ │ ├── Xinerama.h │ │ │ │ │ ├── Xv.h │ │ │ │ │ ├── Xvlib.h │ │ │ │ │ ├── Xvproto.h │ │ │ │ │ ├── extutil.h │ │ │ │ │ ├── panoramiXext.h │ │ │ │ │ ├── panoramiXproto.h │ │ │ │ │ ├── xf86dga.h │ │ │ │ │ ├── xf86dga1.h │ │ │ │ │ ├── xf86dga1str.h │ │ │ │ │ ├── xf86dgastr.h │ │ │ │ │ ├── xf86vmode.h │ │ │ │ │ └── xf86vmstr.h │ │ │ │ ├── bwindow │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_BView.h.svn-base │ │ │ │ │ │ ├── SDL_BWin.h.svn-base │ │ │ │ │ │ ├── SDL_lowvideo.h.svn-base │ │ │ │ │ │ ├── SDL_sysevents.cc.svn-base │ │ │ │ │ │ ├── SDL_sysevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_sysmouse.cc.svn-base │ │ │ │ │ │ ├── SDL_sysmouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_sysvideo.cc.svn-base │ │ │ │ │ │ ├── SDL_syswm.cc.svn-base │ │ │ │ │ │ ├── SDL_syswm_c.h.svn-base │ │ │ │ │ │ ├── SDL_sysyuv.cc.svn-base │ │ │ │ │ │ └── SDL_sysyuv.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_BView.h.svn-base │ │ │ │ │ │ ├── SDL_BWin.h.svn-base │ │ │ │ │ │ ├── SDL_lowvideo.h.svn-base │ │ │ │ │ │ ├── SDL_sysevents.cc.svn-base │ │ │ │ │ │ ├── SDL_sysevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_sysmouse.cc.svn-base │ │ │ │ │ │ ├── SDL_sysmouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_sysvideo.cc.svn-base │ │ │ │ │ │ ├── SDL_syswm.cc.svn-base │ │ │ │ │ │ ├── SDL_syswm_c.h.svn-base │ │ │ │ │ │ ├── SDL_sysyuv.cc.svn-base │ │ │ │ │ │ └── SDL_sysyuv.h.svn-base │ │ │ │ ├── SDL_BView.h │ │ │ │ ├── SDL_BWin.h │ │ │ │ ├── SDL_lowvideo.h │ │ │ │ ├── SDL_sysevents.cc │ │ │ │ ├── SDL_sysevents_c.h │ │ │ │ ├── SDL_sysmouse.cc │ │ │ │ ├── SDL_sysmouse_c.h │ │ │ │ ├── SDL_sysvideo.cc │ │ │ │ ├── SDL_syswm.cc │ │ │ │ ├── SDL_syswm_c.h │ │ │ │ ├── SDL_sysyuv.cc │ │ │ │ └── SDL_sysyuv.h │ │ │ │ ├── cocoa │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_cocoaevents.h.svn-base │ │ │ │ │ │ ├── SDL_cocoaevents.m.svn-base │ │ │ │ │ │ ├── SDL_cocoakeyboard.h.svn-base │ │ │ │ │ │ ├── SDL_cocoakeyboard.m.svn-base │ │ │ │ │ │ ├── SDL_cocoamodes.h.svn-base │ │ │ │ │ │ ├── SDL_cocoamodes.m.svn-base │ │ │ │ │ │ ├── SDL_cocoamouse.h.svn-base │ │ │ │ │ │ ├── SDL_cocoamouse.m.svn-base │ │ │ │ │ │ ├── SDL_cocoaopengl.h.svn-base │ │ │ │ │ │ ├── SDL_cocoaopengl.m.svn-base │ │ │ │ │ │ ├── SDL_cocoavideo.h.svn-base │ │ │ │ │ │ ├── SDL_cocoavideo.m.svn-base │ │ │ │ │ │ ├── SDL_cocoawindow.h.svn-base │ │ │ │ │ │ └── SDL_cocoawindow.m.svn-base │ │ │ │ ├── SDL_cocoaevents.h │ │ │ │ ├── SDL_cocoaevents.m │ │ │ │ ├── SDL_cocoakeyboard.h │ │ │ │ ├── SDL_cocoakeyboard.m │ │ │ │ ├── SDL_cocoamodes.h │ │ │ │ ├── SDL_cocoamodes.m │ │ │ │ ├── SDL_cocoamouse.h │ │ │ │ ├── SDL_cocoamouse.m │ │ │ │ ├── SDL_cocoaopengl.h │ │ │ │ ├── SDL_cocoaopengl.m │ │ │ │ ├── SDL_cocoavideo.h │ │ │ │ ├── SDL_cocoavideo.m │ │ │ │ ├── SDL_cocoawindow.h │ │ │ │ └── SDL_cocoawindow.m │ │ │ │ ├── directfb │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_DirectFB_WM.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_WM.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_events.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_events.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_video.c.svn-base │ │ │ │ │ │ └── SDL_DirectFB_video.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_DirectFB_WM.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_WM.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_dyn.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_dyn.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_events.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_events.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_modes.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_modes.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_mouse.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_mouse.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_opengl.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_opengl.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_render.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_render.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_video.c.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_video.h.svn-base │ │ │ │ │ │ ├── SDL_DirectFB_window.c.svn-base │ │ │ │ │ │ └── SDL_DirectFB_window.h.svn-base │ │ │ │ ├── SDL_DirectFB_WM.c │ │ │ │ ├── SDL_DirectFB_WM.h │ │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ │ ├── SDL_DirectFB_events.c │ │ │ │ ├── SDL_DirectFB_events.h │ │ │ │ ├── SDL_DirectFB_modes.c │ │ │ │ ├── SDL_DirectFB_modes.h │ │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ │ ├── SDL_DirectFB_render.c │ │ │ │ ├── SDL_DirectFB_render.h │ │ │ │ ├── SDL_DirectFB_video.c │ │ │ │ ├── SDL_DirectFB_video.h │ │ │ │ ├── SDL_DirectFB_window.c │ │ │ │ └── SDL_DirectFB_window.h │ │ │ │ ├── dummy │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_nullevents.c.svn-base │ │ │ │ │ │ ├── SDL_nullevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_nullvideo.c.svn-base │ │ │ │ │ │ └── SDL_nullvideo.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_nullevents.c.svn-base │ │ │ │ │ │ ├── SDL_nullevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_nullrender.c.svn-base │ │ │ │ │ │ ├── SDL_nullrender_c.h.svn-base │ │ │ │ │ │ ├── SDL_nullvideo.c.svn-base │ │ │ │ │ │ └── SDL_nullvideo.h.svn-base │ │ │ │ ├── SDL_nullevents.c │ │ │ │ ├── SDL_nullevents_c.h │ │ │ │ ├── SDL_nullrender.c │ │ │ │ ├── SDL_nullrender_c.h │ │ │ │ ├── SDL_nullvideo.c │ │ │ │ └── SDL_nullvideo.h │ │ │ │ ├── fbcon │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── 3dfx_mmio.h.svn-base │ │ │ │ │ │ ├── 3dfx_regs.h.svn-base │ │ │ │ │ │ ├── SDL_fb3dfx.c.svn-base │ │ │ │ │ │ ├── SDL_fb3dfx.h.svn-base │ │ │ │ │ │ ├── SDL_fbelo.c.svn-base │ │ │ │ │ │ ├── SDL_fbelo.h.svn-base │ │ │ │ │ │ ├── SDL_fbevents.c.svn-base │ │ │ │ │ │ ├── SDL_fbevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_fbkeys.h.svn-base │ │ │ │ │ │ ├── SDL_fbmatrox.c.svn-base │ │ │ │ │ │ ├── SDL_fbmatrox.h.svn-base │ │ │ │ │ │ ├── SDL_fbmouse.c.svn-base │ │ │ │ │ │ ├── SDL_fbmouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_fbriva.c.svn-base │ │ │ │ │ │ ├── SDL_fbriva.h.svn-base │ │ │ │ │ │ ├── SDL_fbvideo.c.svn-base │ │ │ │ │ │ ├── SDL_fbvideo.h.svn-base │ │ │ │ │ │ ├── matrox_mmio.h.svn-base │ │ │ │ │ │ ├── matrox_regs.h.svn-base │ │ │ │ │ │ ├── riva_mmio.h.svn-base │ │ │ │ │ │ └── riva_regs.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── 3dfx_mmio.h.svn-base │ │ │ │ │ │ ├── 3dfx_regs.h.svn-base │ │ │ │ │ │ ├── SDL_fb3dfx.c.svn-base │ │ │ │ │ │ ├── SDL_fb3dfx.h.svn-base │ │ │ │ │ │ ├── SDL_fbelo.c.svn-base │ │ │ │ │ │ ├── SDL_fbelo.h.svn-base │ │ │ │ │ │ ├── SDL_fbevents.c.svn-base │ │ │ │ │ │ ├── SDL_fbevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_fbkeys.h.svn-base │ │ │ │ │ │ ├── SDL_fbmatrox.c.svn-base │ │ │ │ │ │ ├── SDL_fbmatrox.h.svn-base │ │ │ │ │ │ ├── SDL_fbmouse.c.svn-base │ │ │ │ │ │ ├── SDL_fbmouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_fbriva.c.svn-base │ │ │ │ │ │ ├── SDL_fbriva.h.svn-base │ │ │ │ │ │ ├── SDL_fbvideo.c.svn-base │ │ │ │ │ │ ├── SDL_fbvideo.h.svn-base │ │ │ │ │ │ ├── matrox_mmio.h.svn-base │ │ │ │ │ │ ├── matrox_regs.h.svn-base │ │ │ │ │ │ ├── riva_mmio.h.svn-base │ │ │ │ │ │ └── riva_regs.h.svn-base │ │ │ │ ├── 3dfx_mmio.h │ │ │ │ ├── 3dfx_regs.h │ │ │ │ ├── SDL_fb3dfx.c │ │ │ │ ├── SDL_fb3dfx.h │ │ │ │ ├── SDL_fbelo.c │ │ │ │ ├── SDL_fbelo.h │ │ │ │ ├── SDL_fbevents.c │ │ │ │ ├── SDL_fbevents_c.h │ │ │ │ ├── SDL_fbkeys.h │ │ │ │ ├── SDL_fbmatrox.c │ │ │ │ ├── SDL_fbmatrox.h │ │ │ │ ├── SDL_fbmouse.c │ │ │ │ ├── SDL_fbmouse_c.h │ │ │ │ ├── SDL_fbriva.c │ │ │ │ ├── SDL_fbriva.h │ │ │ │ ├── SDL_fbvideo.c │ │ │ │ ├── SDL_fbvideo.h │ │ │ │ ├── matrox_mmio.h │ │ │ │ ├── matrox_regs.h │ │ │ │ ├── riva_mmio.h │ │ │ │ └── riva_regs.h │ │ │ │ ├── gapi │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_gapivideo.c.svn-base │ │ │ │ │ │ └── SDL_gapivideo.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_gapivideo.c.svn-base │ │ │ │ │ │ └── SDL_gapivideo.h.svn-base │ │ │ │ ├── SDL_gapivideo.c │ │ │ │ └── SDL_gapivideo.h │ │ │ │ ├── mmx.h │ │ │ │ ├── nds │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_ndsevents.c.svn-base │ │ │ │ │ │ ├── SDL_ndsevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_ndsrender.c.svn-base │ │ │ │ │ │ ├── SDL_ndsrender_c.h.svn-base │ │ │ │ │ │ ├── SDL_ndsvideo.c.svn-base │ │ │ │ │ │ └── SDL_ndsvideo.h.svn-base │ │ │ │ ├── SDL_ndsevents.c │ │ │ │ ├── SDL_ndsevents_c.h │ │ │ │ ├── SDL_ndsrender.c │ │ │ │ ├── SDL_ndsrender_c.h │ │ │ │ ├── SDL_ndsvideo.c │ │ │ │ └── SDL_ndsvideo.h │ │ │ │ ├── pandora │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_pandora.c.svn-base │ │ │ │ │ │ ├── SDL_pandora.h.svn-base │ │ │ │ │ │ ├── SDL_pandora_events.c.svn-base │ │ │ │ │ │ └── SDL_pandora_events.h.svn-base │ │ │ │ ├── SDL_pandora.c │ │ │ │ ├── SDL_pandora.h │ │ │ │ ├── SDL_pandora_events.c │ │ │ │ └── SDL_pandora_events.h │ │ │ │ ├── photon │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_photon.c.svn-base │ │ │ │ │ │ ├── SDL_photon.h.svn-base │ │ │ │ │ │ ├── SDL_photon_input.c.svn-base │ │ │ │ │ │ ├── SDL_photon_input.h.svn-base │ │ │ │ │ │ ├── SDL_photon_keycodes.h.svn-base │ │ │ │ │ │ ├── SDL_photon_pixelfmt.c.svn-base │ │ │ │ │ │ ├── SDL_photon_pixelfmt.h.svn-base │ │ │ │ │ │ ├── SDL_photon_render.c.svn-base │ │ │ │ │ │ └── SDL_photon_render.h.svn-base │ │ │ │ ├── SDL_photon.c │ │ │ │ ├── SDL_photon.h │ │ │ │ ├── SDL_photon_input.c │ │ │ │ ├── SDL_photon_input.h │ │ │ │ ├── SDL_photon_keycodes.h │ │ │ │ ├── SDL_photon_pixelfmt.c │ │ │ │ ├── SDL_photon_pixelfmt.h │ │ │ │ ├── SDL_photon_render.c │ │ │ │ └── SDL_photon_render.h │ │ │ │ ├── ps2gs │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_gsevents.c.svn-base │ │ │ │ │ │ ├── SDL_gsevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_gskeys.h.svn-base │ │ │ │ │ │ ├── SDL_gsmouse.c.svn-base │ │ │ │ │ │ ├── SDL_gsmouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_gsvideo.c.svn-base │ │ │ │ │ │ ├── SDL_gsvideo.h.svn-base │ │ │ │ │ │ ├── SDL_gsyuv.c.svn-base │ │ │ │ │ │ └── SDL_gsyuv_c.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_gsevents.c.svn-base │ │ │ │ │ │ ├── SDL_gsevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_gskeys.h.svn-base │ │ │ │ │ │ ├── SDL_gsmouse.c.svn-base │ │ │ │ │ │ ├── SDL_gsmouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_gsvideo.c.svn-base │ │ │ │ │ │ ├── SDL_gsvideo.h.svn-base │ │ │ │ │ │ ├── SDL_gsyuv.c.svn-base │ │ │ │ │ │ └── SDL_gsyuv_c.h.svn-base │ │ │ │ ├── SDL_gsevents.c │ │ │ │ ├── SDL_gsevents_c.h │ │ │ │ ├── SDL_gskeys.h │ │ │ │ ├── SDL_gsmouse.c │ │ │ │ ├── SDL_gsmouse_c.h │ │ │ │ ├── SDL_gsvideo.c │ │ │ │ ├── SDL_gsvideo.h │ │ │ │ ├── SDL_gsyuv.c │ │ │ │ └── SDL_gsyuv_c.h │ │ │ │ ├── ps3 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_ps3events.c.svn-base │ │ │ │ │ │ ├── SDL_ps3events_c.h.svn-base │ │ │ │ │ │ ├── SDL_ps3modes.c.svn-base │ │ │ │ │ │ ├── SDL_ps3modes_c.h.svn-base │ │ │ │ │ │ ├── SDL_ps3render.c.svn-base │ │ │ │ │ │ ├── SDL_ps3render_c.h.svn-base │ │ │ │ │ │ ├── SDL_ps3spe.c.svn-base │ │ │ │ │ │ ├── SDL_ps3spe_c.h.svn-base │ │ │ │ │ │ ├── SDL_ps3video.c.svn-base │ │ │ │ │ │ └── SDL_ps3video.h.svn-base │ │ │ │ ├── SDL_ps3events.c │ │ │ │ ├── SDL_ps3events_c.h │ │ │ │ ├── SDL_ps3modes.c │ │ │ │ ├── SDL_ps3modes_c.h │ │ │ │ ├── SDL_ps3render.c │ │ │ │ ├── SDL_ps3render_c.h │ │ │ │ ├── SDL_ps3spe.c │ │ │ │ ├── SDL_ps3spe_c.h │ │ │ │ ├── SDL_ps3video.c │ │ │ │ ├── SDL_ps3video.h │ │ │ │ └── spulibs │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Makefile.svn-base │ │ │ │ │ │ ├── bilin_scaler.c.svn-base │ │ │ │ │ │ ├── fb_writer.c.svn-base │ │ │ │ │ │ ├── spu_common.h.svn-base │ │ │ │ │ │ └── yuv2rgb.c.svn-base │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bilin_scaler.c │ │ │ │ │ ├── fb_writer.c │ │ │ │ │ ├── spu_common.h │ │ │ │ │ └── yuv2rgb.c │ │ │ │ ├── qnxgf │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_gf_input.c.svn-base │ │ │ │ │ │ ├── SDL_gf_input.h.svn-base │ │ │ │ │ │ ├── SDL_gf_opengles.c.svn-base │ │ │ │ │ │ ├── SDL_gf_opengles.h.svn-base │ │ │ │ │ │ ├── SDL_gf_pixelfmt.c.svn-base │ │ │ │ │ │ ├── SDL_gf_pixelfmt.h.svn-base │ │ │ │ │ │ ├── SDL_gf_render.c.svn-base │ │ │ │ │ │ ├── SDL_gf_render.h.svn-base │ │ │ │ │ │ ├── SDL_hiddi_joystick.h.svn-base │ │ │ │ │ │ ├── SDL_hiddi_keyboard.h.svn-base │ │ │ │ │ │ ├── SDL_hiddi_mouse.h.svn-base │ │ │ │ │ │ ├── SDL_qnxgf.c.svn-base │ │ │ │ │ │ └── SDL_qnxgf.h.svn-base │ │ │ │ ├── SDL_gf_input.c │ │ │ │ ├── SDL_gf_input.h │ │ │ │ ├── SDL_gf_opengles.c │ │ │ │ ├── SDL_gf_opengles.h │ │ │ │ ├── SDL_gf_pixelfmt.c │ │ │ │ ├── SDL_gf_pixelfmt.h │ │ │ │ ├── SDL_gf_render.c │ │ │ │ ├── SDL_gf_render.h │ │ │ │ ├── SDL_hiddi_joystick.h │ │ │ │ ├── SDL_hiddi_keyboard.h │ │ │ │ ├── SDL_hiddi_mouse.h │ │ │ │ ├── SDL_qnxgf.c │ │ │ │ └── SDL_qnxgf.h │ │ │ │ ├── riscos │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_riscosASM.S.svn-base │ │ │ │ │ │ ├── SDL_riscosFullScreenVideo.c.svn-base │ │ │ │ │ │ ├── SDL_riscosevents.c.svn-base │ │ │ │ │ │ ├── SDL_riscosevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_riscosmouse.c.svn-base │ │ │ │ │ │ ├── SDL_riscosmouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_riscossprite.c.svn-base │ │ │ │ │ │ ├── SDL_riscostask.c.svn-base │ │ │ │ │ │ ├── SDL_riscostask.h.svn-base │ │ │ │ │ │ ├── SDL_riscosvideo.c.svn-base │ │ │ │ │ │ ├── SDL_riscosvideo.h.svn-base │ │ │ │ │ │ ├── SDL_wimppoll.c.svn-base │ │ │ │ │ │ └── SDL_wimpvideo.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_riscosASM.S.svn-base │ │ │ │ │ │ ├── SDL_riscosFullScreenVideo.c.svn-base │ │ │ │ │ │ ├── SDL_riscosevents.c.svn-base │ │ │ │ │ │ ├── SDL_riscosevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_riscosmouse.c.svn-base │ │ │ │ │ │ ├── SDL_riscosmouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_riscossprite.c.svn-base │ │ │ │ │ │ ├── SDL_riscostask.c.svn-base │ │ │ │ │ │ ├── SDL_riscostask.h.svn-base │ │ │ │ │ │ ├── SDL_riscosvideo.c.svn-base │ │ │ │ │ │ ├── SDL_riscosvideo.h.svn-base │ │ │ │ │ │ ├── SDL_wimppoll.c.svn-base │ │ │ │ │ │ └── SDL_wimpvideo.c.svn-base │ │ │ │ ├── SDL_riscosASM.S │ │ │ │ ├── SDL_riscosFullScreenVideo.c │ │ │ │ ├── SDL_riscosevents.c │ │ │ │ ├── SDL_riscosevents_c.h │ │ │ │ ├── SDL_riscosmouse.c │ │ │ │ ├── SDL_riscosmouse_c.h │ │ │ │ ├── SDL_riscossprite.c │ │ │ │ ├── SDL_riscostask.c │ │ │ │ ├── SDL_riscostask.h │ │ │ │ ├── SDL_riscosvideo.c │ │ │ │ ├── SDL_riscosvideo.h │ │ │ │ ├── SDL_wimppoll.c │ │ │ │ └── SDL_wimpvideo.c │ │ │ │ ├── sdlgenblit.pl │ │ │ │ ├── svga │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── dir-prop-base │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── SDL_svgaevents.c.svn-base │ │ │ │ │ │ ├── SDL_svgaevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_svgamouse.c.svn-base │ │ │ │ │ │ ├── SDL_svgamouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_svgavideo.c.svn-base │ │ │ │ │ │ └── SDL_svgavideo.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_svgaevents.c.svn-base │ │ │ │ │ │ ├── SDL_svgaevents_c.h.svn-base │ │ │ │ │ │ ├── SDL_svgamouse.c.svn-base │ │ │ │ │ │ ├── SDL_svgamouse_c.h.svn-base │ │ │ │ │ │ ├── SDL_svgavideo.c.svn-base │ │ │ │ │ │ └── SDL_svgavideo.h.svn-base │ │ │ │ ├── SDL_svgaevents.c │ │ │ │ ├── SDL_svgaevents_c.h │ │ │ │ ├── SDL_svgamouse.c │ │ │ │ ├── SDL_svgamouse_c.h │ │ │ │ ├── SDL_svgavideo.c │ │ │ │ └── SDL_svgavideo.h │ │ │ │ ├── uikit │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_uikitappdelegate.h.svn-base │ │ │ │ │ │ ├── SDL_uikitappdelegate.m.svn-base │ │ │ │ │ │ ├── SDL_uikitevents.h.svn-base │ │ │ │ │ │ ├── SDL_uikitevents.m.svn-base │ │ │ │ │ │ ├── SDL_uikitkeyboard.h.svn-base │ │ │ │ │ │ ├── SDL_uikitopengles.h.svn-base │ │ │ │ │ │ ├── SDL_uikitopengles.m.svn-base │ │ │ │ │ │ ├── SDL_uikitopenglview.h.svn-base │ │ │ │ │ │ ├── SDL_uikitopenglview.m.svn-base │ │ │ │ │ │ ├── SDL_uikitvideo.h.svn-base │ │ │ │ │ │ ├── SDL_uikitvideo.m.svn-base │ │ │ │ │ │ ├── SDL_uikitview.h.svn-base │ │ │ │ │ │ ├── SDL_uikitview.m.svn-base │ │ │ │ │ │ ├── SDL_uikitwindow.h.svn-base │ │ │ │ │ │ ├── SDL_uikitwindow.m.svn-base │ │ │ │ │ │ ├── jumphack.c.svn-base │ │ │ │ │ │ ├── jumphack.h.svn-base │ │ │ │ │ │ └── keyinfotable.h.svn-base │ │ │ │ ├── SDL_uikitappdelegate.h │ │ │ │ ├── SDL_uikitappdelegate.m │ │ │ │ ├── SDL_uikitevents.h │ │ │ │ ├── SDL_uikitevents.m │ │ │ │ ├── SDL_uikitkeyboard.h │ │ │ │ ├── SDL_uikitopengles.h │ │ │ │ ├── SDL_uikitopengles.m │ │ │ │ ├── SDL_uikitopenglview.h │ │ │ │ ├── SDL_uikitopenglview.m │ │ │ │ ├── SDL_uikitvideo.h │ │ │ │ ├── SDL_uikitvideo.m │ │ │ │ ├── SDL_uikitview.h │ │ │ │ ├── SDL_uikitview.m │ │ │ │ ├── SDL_uikitwindow.h │ │ │ │ ├── SDL_uikitwindow.m │ │ │ │ ├── jumphack.c │ │ │ │ ├── jumphack.h │ │ │ │ └── keyinfotable.h │ │ │ │ ├── win32 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── SDL_ceddrawrender.c.svn-base │ │ │ │ │ │ ├── SDL_ceddrawrender.h.svn-base │ │ │ │ │ │ ├── SDL_d3drender.c.svn-base │ │ │ │ │ │ ├── SDL_d3drender.h.svn-base │ │ │ │ │ │ ├── SDL_gapirender.c.svn-base │ │ │ │ │ │ ├── SDL_gapirender.h.svn-base │ │ │ │ │ │ ├── SDL_gapirender_c.h.svn-base │ │ │ │ │ │ ├── SDL_gdirender.c.svn-base │ │ │ │ │ │ ├── SDL_gdirender.h.svn-base │ │ │ │ │ │ ├── SDL_vkeys.h.svn-base │ │ │ │ │ │ ├── SDL_win32events.c.svn-base │ │ │ │ │ │ ├── SDL_win32events.h.svn-base │ │ │ │ │ │ ├── SDL_win32gamma.c.svn-base │ │ │ │ │ │ ├── SDL_win32gamma.h.svn-base │ │ │ │ │ │ ├── SDL_win32keyboard.c.svn-base │ │ │ │ │ │ ├── SDL_win32keyboard.h.svn-base │ │ │ │ │ │ ├── SDL_win32modes.c.svn-base │ │ │ │ │ │ ├── SDL_win32modes.h.svn-base │ │ │ │ │ │ ├── SDL_win32mouse.c.svn-base │ │ │ │ │ │ ├── SDL_win32mouse.h.svn-base │ │ │ │ │ │ ├── SDL_win32opengl.c.svn-base │ │ │ │ │ │ ├── SDL_win32opengl.h.svn-base │ │ │ │ │ │ ├── SDL_win32video.c.svn-base │ │ │ │ │ │ ├── SDL_win32video.h.svn-base │ │ │ │ │ │ ├── SDL_win32window.c.svn-base │ │ │ │ │ │ ├── SDL_win32window.h.svn-base │ │ │ │ │ │ └── wmmsg.h.svn-base │ │ │ │ ├── SDL_ceddrawrender.c │ │ │ │ ├── SDL_ceddrawrender.h │ │ │ │ ├── SDL_d3drender.c │ │ │ │ ├── SDL_d3drender.h │ │ │ │ ├── SDL_gapirender.c │ │ │ │ ├── SDL_gapirender.h │ │ │ │ ├── SDL_gapirender_c.h │ │ │ │ ├── SDL_gdirender.c │ │ │ │ ├── SDL_gdirender.h │ │ │ │ ├── SDL_vkeys.h │ │ │ │ ├── SDL_win32events.c │ │ │ │ ├── SDL_win32events.h │ │ │ │ ├── SDL_win32gamma.c │ │ │ │ ├── SDL_win32gamma.h │ │ │ │ ├── SDL_win32keyboard.c │ │ │ │ ├── SDL_win32keyboard.h │ │ │ │ ├── SDL_win32modes.c │ │ │ │ ├── SDL_win32modes.h │ │ │ │ ├── SDL_win32mouse.c │ │ │ │ ├── SDL_win32mouse.h │ │ │ │ ├── SDL_win32opengl.c │ │ │ │ ├── SDL_win32opengl.h │ │ │ │ ├── SDL_win32video.c │ │ │ │ ├── SDL_win32video.h │ │ │ │ ├── SDL_win32window.c │ │ │ │ ├── SDL_win32window.h │ │ │ │ ├── wactab │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── pktdef.h.svn-base │ │ │ │ │ │ │ ├── wintab.h.svn-base │ │ │ │ │ │ │ └── wintabx.h.svn-base │ │ │ │ │ ├── pktdef.h │ │ │ │ │ ├── wintab.h │ │ │ │ │ └── wintabx.h │ │ │ │ └── wmmsg.h │ │ │ │ └── x11 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── SDL_x11dyn.c.svn-base │ │ │ │ │ ├── SDL_x11dyn.h.svn-base │ │ │ │ │ ├── SDL_x11events.c.svn-base │ │ │ │ │ ├── SDL_x11events.h.svn-base │ │ │ │ │ ├── SDL_x11gamma.c.svn-base │ │ │ │ │ ├── SDL_x11gamma.h.svn-base │ │ │ │ │ ├── SDL_x11keyboard.c.svn-base │ │ │ │ │ ├── SDL_x11keyboard.h.svn-base │ │ │ │ │ ├── SDL_x11modes.c.svn-base │ │ │ │ │ ├── SDL_x11modes.h.svn-base │ │ │ │ │ ├── SDL_x11mouse.c.svn-base │ │ │ │ │ ├── SDL_x11mouse.h.svn-base │ │ │ │ │ ├── SDL_x11opengl.c.svn-base │ │ │ │ │ ├── SDL_x11opengl.h.svn-base │ │ │ │ │ ├── SDL_x11opengles.c.svn-base │ │ │ │ │ ├── SDL_x11opengles.h.svn-base │ │ │ │ │ ├── SDL_x11render.c.svn-base │ │ │ │ │ ├── SDL_x11render.h.svn-base │ │ │ │ │ ├── SDL_x11sym.h.svn-base │ │ │ │ │ ├── SDL_x11video.c.svn-base │ │ │ │ │ ├── SDL_x11video.h.svn-base │ │ │ │ │ ├── SDL_x11window.c.svn-base │ │ │ │ │ ├── SDL_x11window.h.svn-base │ │ │ │ │ ├── imKStoUCS.c.svn-base │ │ │ │ │ └── imKStoUCS.h.svn-base │ │ │ │ ├── SDL_x11dyn.c │ │ │ │ ├── SDL_x11dyn.h │ │ │ │ ├── SDL_x11events.c │ │ │ │ ├── SDL_x11events.h │ │ │ │ ├── SDL_x11gamma.c │ │ │ │ ├── SDL_x11gamma.h │ │ │ │ ├── SDL_x11keyboard.c │ │ │ │ ├── SDL_x11keyboard.h │ │ │ │ ├── SDL_x11modes.c │ │ │ │ ├── SDL_x11modes.h │ │ │ │ ├── SDL_x11mouse.c │ │ │ │ ├── SDL_x11mouse.h │ │ │ │ ├── SDL_x11opengl.c │ │ │ │ ├── SDL_x11opengl.h │ │ │ │ ├── SDL_x11opengles.c │ │ │ │ ├── SDL_x11opengles.h │ │ │ │ ├── SDL_x11render.c │ │ │ │ ├── SDL_x11render.h │ │ │ │ ├── SDL_x11sym.h │ │ │ │ ├── SDL_x11video.c │ │ │ │ ├── SDL_x11video.h │ │ │ │ ├── SDL_x11window.c │ │ │ │ ├── SDL_x11window.h │ │ │ │ ├── imKStoUCS.c │ │ │ │ └── imKStoUCS.h │ │ └── test │ │ │ ├── .gdbinit │ │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── dir-prop-base │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ ├── .gdbinit.svn-base │ │ │ │ ├── COPYING.svn-base │ │ │ │ ├── Makefile.in.svn-base │ │ │ │ ├── README.svn-base │ │ │ │ ├── acinclude.m4.svn-base │ │ │ │ ├── autogen.sh.svn-base │ │ │ │ ├── checkkeys.c.svn-base │ │ │ │ ├── configure.in.svn-base │ │ │ │ ├── gcc-fat.sh.svn-base │ │ │ │ ├── graywin.c.svn-base │ │ │ │ ├── icon.bmp.svn-base │ │ │ │ ├── loopwave.c.svn-base │ │ │ │ ├── moose.dat.svn-base │ │ │ │ ├── picture.xbm.svn-base │ │ │ │ ├── sail.bmp.svn-base │ │ │ │ ├── sample.bmp.svn-base │ │ │ │ ├── sample.wav.svn-base │ │ │ │ ├── testalpha.c.svn-base │ │ │ │ ├── testbitmap.c.svn-base │ │ │ │ ├── testblitspeed.c.svn-base │ │ │ │ ├── testdyngl.c.svn-base │ │ │ │ ├── testerror.c.svn-base │ │ │ │ ├── testfile.c.svn-base │ │ │ │ ├── testgamma.c.svn-base │ │ │ │ ├── testgl.c.svn-base │ │ │ │ ├── testhread.c.svn-base │ │ │ │ ├── testiconv.c.svn-base │ │ │ │ ├── testjoystick.c.svn-base │ │ │ │ ├── testkeys.c.svn-base │ │ │ │ ├── testlock.c.svn-base │ │ │ │ ├── testoverlay.c.svn-base │ │ │ │ ├── testoverlay2.c.svn-base │ │ │ │ ├── testpalette.c.svn-base │ │ │ │ ├── testplatform.c.svn-base │ │ │ │ ├── testsem.c.svn-base │ │ │ │ ├── testsprite.c.svn-base │ │ │ │ ├── testtimer.c.svn-base │ │ │ │ ├── testver.c.svn-base │ │ │ │ ├── testvidinfo.c.svn-base │ │ │ │ ├── testwin.c.svn-base │ │ │ │ ├── testwm.c.svn-base │ │ │ │ ├── threadwin.c.svn-base │ │ │ │ ├── torturethread.c.svn-base │ │ │ │ └── utf8.txt.svn-base │ │ │ └── text-base │ │ │ │ ├── .gdbinit.svn-base │ │ │ │ ├── COPYING.svn-base │ │ │ │ ├── Makefile.in.svn-base │ │ │ │ ├── README.svn-base │ │ │ │ ├── acinclude.m4.svn-base │ │ │ │ ├── autogen.sh.svn-base │ │ │ │ ├── checkkeys.c.svn-base │ │ │ │ ├── common.c.svn-base │ │ │ │ ├── common.h.svn-base │ │ │ │ ├── configure.in.svn-base │ │ │ │ ├── gcc-fat.sh.svn-base │ │ │ │ ├── graywin.c.svn-base │ │ │ │ ├── icon.bmp.svn-base │ │ │ │ ├── loopwave.c.svn-base │ │ │ │ ├── moose.dat.svn-base │ │ │ │ ├── picture.xbm.svn-base │ │ │ │ ├── sail.bmp.svn-base │ │ │ │ ├── sample.bmp.svn-base │ │ │ │ ├── sample.wav.svn-base │ │ │ │ ├── testalpha.c.svn-base │ │ │ │ ├── testatomic.c.svn-base │ │ │ │ ├── testaudioinfo.c.svn-base │ │ │ │ ├── testbitmap.c.svn-base │ │ │ │ ├── testblitspeed.c.svn-base │ │ │ │ ├── testcursor.c.svn-base │ │ │ │ ├── testdraw2.c.svn-base │ │ │ │ ├── testdyngl.c.svn-base │ │ │ │ ├── testdyngles.c.svn-base │ │ │ │ ├── testerror.c.svn-base │ │ │ │ ├── testfile.c.svn-base │ │ │ │ ├── testgamma.c.svn-base │ │ │ │ ├── testgl.c.svn-base │ │ │ │ ├── testgl2.c.svn-base │ │ │ │ ├── testgles.c.svn-base │ │ │ │ ├── testhaptic.c.svn-base │ │ │ │ ├── testhread.c.svn-base │ │ │ │ ├── testiconv.c.svn-base │ │ │ │ ├── testime.c.svn-base │ │ │ │ ├── testintersections.c.svn-base │ │ │ │ ├── testjoystick.c.svn-base │ │ │ │ ├── testkeys.c.svn-base │ │ │ │ ├── testloadso.c.svn-base │ │ │ │ ├── testlock.c.svn-base │ │ │ │ ├── testmmousetablet.c.svn-base │ │ │ │ ├── testmultiaudio.c.svn-base │ │ │ │ ├── testnative.c.svn-base │ │ │ │ ├── testnative.h.svn-base │ │ │ │ ├── testnativecocoa.m.svn-base │ │ │ │ ├── testnativew32.c.svn-base │ │ │ │ ├── testnativex11.c.svn-base │ │ │ │ ├── testoverlay.c.svn-base │ │ │ │ ├── testoverlay2.c.svn-base │ │ │ │ ├── testpalette.c.svn-base │ │ │ │ ├── testplatform.c.svn-base │ │ │ │ ├── testpower.c.svn-base │ │ │ │ ├── testresample.c.svn-base │ │ │ │ ├── testsem.c.svn-base │ │ │ │ ├── testsprite.c.svn-base │ │ │ │ ├── testsprite2.c.svn-base │ │ │ │ ├── testspriteminimal.c.svn-base │ │ │ │ ├── testtimer.c.svn-base │ │ │ │ ├── testver.c.svn-base │ │ │ │ ├── testvidinfo.c.svn-base │ │ │ │ ├── testwin.c.svn-base │ │ │ │ ├── testwm.c.svn-base │ │ │ │ ├── testwm2.c.svn-base │ │ │ │ ├── threadwin.c.svn-base │ │ │ │ ├── torturethread.c.svn-base │ │ │ │ └── utf8.txt.svn-base │ │ │ ├── COPYING │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── acinclude.m4 │ │ │ ├── autogen.sh │ │ │ ├── automated │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── Makefile.svn-base │ │ │ │ │ ├── README.svn-base │ │ │ │ │ ├── SDL_at.c.svn-base │ │ │ │ │ ├── SDL_at.h.svn-base │ │ │ │ │ └── testsdl.c.svn-base │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── SDL_at.c │ │ │ ├── SDL_at.h │ │ │ ├── audio │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── audio.c.svn-base │ │ │ │ │ │ └── audio.h.svn-base │ │ │ │ ├── audio.c │ │ │ │ └── audio.h │ │ │ ├── common │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── common.c.svn-base │ │ │ │ │ │ ├── common.h.svn-base │ │ │ │ │ │ ├── images.h.svn-base │ │ │ │ │ │ ├── img_blit.c.svn-base │ │ │ │ │ │ ├── img_blitblend.c.svn-base │ │ │ │ │ │ ├── img_face.c.svn-base │ │ │ │ │ │ ├── img_primitives.c.svn-base │ │ │ │ │ │ └── img_primitivesblend.c.svn-base │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── images.h │ │ │ │ ├── img_blit.c │ │ │ │ ├── img_blitblend.c │ │ │ │ ├── img_face.c │ │ │ │ ├── img_primitives.c │ │ │ │ └── img_primitivesblend.c │ │ │ ├── platform │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── platform.c.svn-base │ │ │ │ │ │ └── platform.h.svn-base │ │ │ │ ├── platform.c │ │ │ │ └── platform.h │ │ │ ├── rect │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── rect.c.svn-base │ │ │ │ │ │ └── rect.h.svn-base │ │ │ │ ├── rect.c │ │ │ │ └── rect.h │ │ │ ├── render │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── render.c.svn-base │ │ │ │ │ │ └── render.h.svn-base │ │ │ │ ├── render.c │ │ │ │ └── render.h │ │ │ ├── rwops │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── read.svn-base │ │ │ │ │ │ ├── rwops.c.svn-base │ │ │ │ │ │ └── rwops.h.svn-base │ │ │ │ ├── read │ │ │ │ ├── rwops.c │ │ │ │ └── rwops.h │ │ │ ├── surface │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── surface.c.svn-base │ │ │ │ │ │ └── surface.h.svn-base │ │ │ │ ├── surface.c │ │ │ │ └── surface.h │ │ │ └── testsdl.c │ │ │ ├── checkkeys.c │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── configure.in │ │ │ ├── gcc-fat.sh │ │ │ ├── graywin.c │ │ │ ├── icon.bmp │ │ │ ├── loopwave.c │ │ │ ├── moose.dat │ │ │ ├── nds-test-progs │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── general │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── Makefile.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── Makefile.svn-base │ │ │ │ ├── Makefile │ │ │ │ └── source │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── main.c.svn-base │ │ │ │ │ └── main.c │ │ │ ├── sprite │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── Makefile.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── Makefile.svn-base │ │ │ │ ├── Makefile │ │ │ │ └── source │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── common.c.svn-base │ │ │ │ │ │ ├── common.h.svn-base │ │ │ │ │ │ └── testsprite.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── common.c.svn-base │ │ │ │ │ │ ├── common.h.svn-base │ │ │ │ │ │ └── testsprite.c.svn-base │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ └── testsprite.c │ │ │ └── sprite2 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── Makefile.svn-base │ │ │ │ │ └── icon.bmp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── Makefile.svn-base │ │ │ │ │ └── icon.bmp.svn-base │ │ │ │ ├── Makefile │ │ │ │ ├── icon.bmp │ │ │ │ └── source │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── common.c.svn-base │ │ │ │ │ ├── common.h.svn-base │ │ │ │ │ └── testsprite2.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── common.c.svn-base │ │ │ │ │ ├── common.h.svn-base │ │ │ │ │ └── testsprite2.c.svn-base │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ └── testsprite2.c │ │ │ ├── picture.xbm │ │ │ ├── sail.bmp │ │ │ ├── sample.bmp │ │ │ ├── sample.wav │ │ │ ├── testalpha.c │ │ │ ├── testatomic.c │ │ │ ├── testaudioinfo.c │ │ │ ├── testbitmap.c │ │ │ ├── testblitspeed.c │ │ │ ├── testcursor.c │ │ │ ├── testdraw2.c │ │ │ ├── testdyngl.c │ │ │ ├── testdyngles.c │ │ │ ├── testerror.c │ │ │ ├── testfile.c │ │ │ ├── testgamma.c │ │ │ ├── testgl.c │ │ │ ├── testgl2.c │ │ │ ├── testgles.c │ │ │ ├── testhaptic.c │ │ │ ├── testhread.c │ │ │ ├── testiconv.c │ │ │ ├── testime.c │ │ │ ├── testintersections.c │ │ │ ├── testjoystick.c │ │ │ ├── testkeys.c │ │ │ ├── testloadso.c │ │ │ ├── testlock.c │ │ │ ├── testmmousetablet.c │ │ │ ├── testmultiaudio.c │ │ │ ├── testnative.c │ │ │ ├── testnative.h │ │ │ ├── testnativecocoa.m │ │ │ ├── testnativew32.c │ │ │ ├── testnativex11.c │ │ │ ├── testoverlay.c │ │ │ ├── testoverlay2.c │ │ │ ├── testpalette.c │ │ │ ├── testplatform.c │ │ │ ├── testpower.c │ │ │ ├── testresample.c │ │ │ ├── testsem.c │ │ │ ├── testsprite.c │ │ │ ├── testsprite2.c │ │ │ ├── testspriteminimal.c │ │ │ ├── testtimer.c │ │ │ ├── testver.c │ │ │ ├── testvidinfo.c │ │ │ ├── testwin.c │ │ │ ├── testwm.c │ │ │ ├── testwm2.c │ │ │ ├── threadwin.c │ │ │ ├── torturethread.c │ │ │ └── utf8.txt │ ├── gles2n64-read-only │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── 2xSAI.cpp.svn-base │ │ │ │ ├── 2xSAI.h.svn-base │ │ │ │ ├── 3DMath.h.svn-base │ │ │ │ ├── COPYING.svn-base │ │ │ │ ├── CRC.cpp.svn-base │ │ │ │ ├── CRC.h.svn-base │ │ │ │ ├── Combiner.cpp.svn-base │ │ │ │ ├── Combiner.h.svn-base │ │ │ │ ├── Config.cpp.svn-base │ │ │ │ ├── Config.h.svn-base │ │ │ │ ├── Debug.cpp.svn-base │ │ │ │ ├── Debug.h.svn-base │ │ │ │ ├── DepthBuffer.cpp.svn-base │ │ │ │ ├── DepthBuffer.h.svn-base │ │ │ │ ├── F3D.cpp.svn-base │ │ │ │ ├── F3D.h.svn-base │ │ │ │ ├── F3DDKR.cpp.svn-base │ │ │ │ ├── F3DDKR.h.svn-base │ │ │ │ ├── F3DEX.cpp.svn-base │ │ │ │ ├── F3DEX.h.svn-base │ │ │ │ ├── F3DEX2.cpp.svn-base │ │ │ │ ├── F3DEX2.h.svn-base │ │ │ │ ├── F3DPD.cpp.svn-base │ │ │ │ ├── F3DPD.h.svn-base │ │ │ │ ├── F3DWRUS.cpp.svn-base │ │ │ │ ├── F3DWRUS.h.svn-base │ │ │ │ ├── FrameBuffer.cpp.svn-base │ │ │ │ ├── FrameBuffer.h.svn-base │ │ │ │ ├── GBI.cpp.svn-base │ │ │ │ ├── GBI.h.svn-base │ │ │ │ ├── L3D.cpp.svn-base │ │ │ │ ├── L3D.h.svn-base │ │ │ │ ├── L3DEX.cpp.svn-base │ │ │ │ ├── L3DEX.h.svn-base │ │ │ │ ├── L3DEX2.cpp.svn-base │ │ │ │ ├── L3DEX2.h.svn-base │ │ │ │ ├── Makefile.svn-base │ │ │ │ ├── N64.cpp.svn-base │ │ │ │ ├── N64.h.svn-base │ │ │ │ ├── OpenGL.cpp.svn-base │ │ │ │ ├── OpenGL.h.svn-base │ │ │ │ ├── RDP.cpp.svn-base │ │ │ │ ├── RDP.h.svn-base │ │ │ │ ├── RSP.cpp.svn-base │ │ │ │ ├── RSP.h.svn-base │ │ │ │ ├── S2DEX.cpp.svn-base │ │ │ │ ├── S2DEX.h.svn-base │ │ │ │ ├── S2DEX2.cpp.svn-base │ │ │ │ ├── S2DEX2.h.svn-base │ │ │ │ ├── ShaderCombiner.cpp.svn-base │ │ │ │ ├── ShaderCombiner.h.svn-base │ │ │ │ ├── Textures.cpp.svn-base │ │ │ │ ├── Textures.h.svn-base │ │ │ │ ├── Types.h.svn-base │ │ │ │ ├── VI.cpp.svn-base │ │ │ │ ├── VI.h.svn-base │ │ │ │ ├── Zilmar GFX 1.3.h.svn-base │ │ │ │ ├── convert.h.svn-base │ │ │ │ ├── gDP.cpp.svn-base │ │ │ │ ├── gDP.h.svn-base │ │ │ │ ├── gSP.cpp.svn-base │ │ │ │ ├── gSP.h.svn-base │ │ │ │ ├── gles2N64.cpp.svn-base │ │ │ │ ├── gles2N64.h.svn-base │ │ │ │ ├── gles2n64.conf.svn-base │ │ │ │ └── winlnxdefs.h.svn-base │ │ ├── 2xSAI.cpp │ │ ├── 2xSAI.h │ │ ├── 3DMath.h │ │ ├── COPYING │ │ ├── CRC.cpp │ │ ├── CRC.h │ │ ├── Combiner.cpp │ │ ├── Combiner.h │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── Debug.cpp │ │ ├── Debug.h │ │ ├── DepthBuffer.cpp │ │ ├── DepthBuffer.h │ │ ├── F3D.cpp │ │ ├── F3D.h │ │ ├── F3DDKR.cpp │ │ ├── F3DDKR.h │ │ ├── F3DEX.cpp │ │ ├── F3DEX.h │ │ ├── F3DEX2.cpp │ │ ├── F3DEX2.h │ │ ├── F3DPD.cpp │ │ ├── F3DPD.h │ │ ├── F3DWRUS.cpp │ │ ├── F3DWRUS.h │ │ ├── FrameBuffer.cpp │ │ ├── FrameBuffer.h │ │ ├── GBI.cpp │ │ ├── GBI.h │ │ ├── L3D.cpp │ │ ├── L3D.h │ │ ├── L3DEX.cpp │ │ ├── L3DEX.h │ │ ├── L3DEX2.cpp │ │ ├── L3DEX2.h │ │ ├── Makefile │ │ ├── N64.cpp │ │ ├── N64.h │ │ ├── OpenGL.cpp │ │ ├── OpenGL.h │ │ ├── RDP.cpp │ │ ├── RDP.h │ │ ├── RSP.cpp │ │ ├── RSP.h │ │ ├── S2DEX.cpp │ │ ├── S2DEX.h │ │ ├── S2DEX2.cpp │ │ ├── S2DEX2.h │ │ ├── ShaderCombiner.cpp │ │ ├── ShaderCombiner.h │ │ ├── Textures.cpp │ │ ├── Textures.h │ │ ├── Types.h │ │ ├── VI.cpp │ │ ├── VI.h │ │ ├── Zilmar GFX 1.3.h │ │ ├── build │ │ │ └── gles2n64-read-only.build │ │ │ │ └── Debug-iphoneos │ │ │ │ └── gles2n64-read-only.build │ │ │ │ ├── build-state.dat │ │ │ │ ├── build-state~.dat │ │ │ │ ├── gles2n64-read-only.dep │ │ │ │ └── gles2n64-read-only~.dep │ │ ├── convert.h │ │ ├── gDP.cpp │ │ ├── gDP.h │ │ ├── gSP.cpp │ │ ├── gSP.h │ │ ├── gles2N64.cpp │ │ ├── gles2N64.h │ │ ├── gles2n64-read-only.xcodeproj │ │ │ └── project.pbxproj │ │ ├── gles2n64.conf │ │ ├── gles2n64.dylib │ │ └── winlnxdefs.h │ ├── libpng │ │ ├── ANNOUNCE │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── README │ │ ├── TODO │ │ ├── configure │ │ ├── contrib │ │ │ ├── README.txt │ │ │ ├── gregbook │ │ │ │ ├── COPYING │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.mingw32 │ │ │ │ ├── Makefile.sgi │ │ │ │ ├── Makefile.unx │ │ │ │ ├── Makefile.w32 │ │ │ │ ├── README │ │ │ │ ├── makevms.com │ │ │ │ ├── readpng.c │ │ │ │ ├── readpng.h │ │ │ │ ├── readpng2.c │ │ │ │ ├── readpng2.h │ │ │ │ ├── readppm.c │ │ │ │ ├── rpng-win.c │ │ │ │ ├── rpng-x.c │ │ │ │ ├── rpng2-win.c │ │ │ │ ├── rpng2-x.c │ │ │ │ ├── toucan.png │ │ │ │ ├── wpng.c │ │ │ │ ├── writepng.c │ │ │ │ └── writepng.h │ │ │ ├── libtests │ │ │ │ └── pngvalid.c │ │ │ ├── pngminim │ │ │ │ ├── decoder │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ │ ├── encoder │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ │ └── preader │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ ├── pngminus │ │ │ │ ├── README │ │ │ │ ├── makefile.std │ │ │ │ ├── makefile.tc3 │ │ │ │ ├── makevms.com │ │ │ │ ├── png2pnm.bat │ │ │ │ ├── png2pnm.c │ │ │ │ ├── png2pnm.sh │ │ │ │ ├── pngminus.bat │ │ │ │ ├── pngminus.sh │ │ │ │ ├── pnm2png.bat │ │ │ │ ├── pnm2png.c │ │ │ │ └── pnm2png.sh │ │ │ ├── pngsuite │ │ │ │ ├── basn0g01.png │ │ │ │ ├── basn0g02.png │ │ │ │ ├── basn0g04.png │ │ │ │ ├── basn0g08.png │ │ │ │ ├── basn0g16.png │ │ │ │ ├── basn2c08.png │ │ │ │ ├── basn2c16.png │ │ │ │ ├── basn3p01.png │ │ │ │ ├── basn3p02.png │ │ │ │ ├── basn3p04.png │ │ │ │ ├── basn3p08.png │ │ │ │ ├── basn4a08.png │ │ │ │ ├── basn4a16.png │ │ │ │ ├── basn6a08.png │ │ │ │ ├── basn6a16.png │ │ │ │ ├── ftbbn1g04.png │ │ │ │ ├── ftbbn2c16.png │ │ │ │ ├── ftbbn3p08.png │ │ │ │ ├── ftbgn2c16.png │ │ │ │ ├── ftbgn3p08.png │ │ │ │ ├── ftbrn2c08.png │ │ │ │ ├── ftbwn1g16.png │ │ │ │ ├── ftbwn3p08.png │ │ │ │ ├── ftbyn3p08.png │ │ │ │ ├── ftp0n1g08.png │ │ │ │ ├── ftp0n2c08.png │ │ │ │ ├── ftp0n3p08.png │ │ │ │ └── ftp1n3p08.png │ │ │ └── visupng │ │ │ │ ├── PngFile.c │ │ │ │ ├── PngFile.h │ │ │ │ ├── README.txt │ │ │ │ ├── VisualPng.c │ │ │ │ ├── VisualPng.dsp │ │ │ │ ├── VisualPng.dsw │ │ │ │ ├── VisualPng.ico │ │ │ │ ├── VisualPng.png │ │ │ │ ├── VisualPng.rc │ │ │ │ ├── cexcept.h │ │ │ │ └── resource.h │ │ ├── example.c │ │ ├── libpng-config.in │ │ ├── libpng-manual.txt │ │ ├── libpng.3 │ │ ├── libpng.a │ │ ├── libpng.pc.in │ │ ├── libpngpf.3 │ │ ├── makefile │ │ ├── png.5 │ │ ├── png.c │ │ ├── png.h │ │ ├── png │ │ │ ├── build │ │ │ │ ├── Debug-iphoneos │ │ │ │ │ └── libpng.a │ │ │ │ └── png.build │ │ │ │ │ └── Debug-iphoneos │ │ │ │ │ └── png.build │ │ │ │ │ ├── Objects-normal │ │ │ │ │ └── armv7 │ │ │ │ │ │ ├── png.LinkFileList │ │ │ │ │ │ ├── png.d │ │ │ │ │ │ ├── png.dia │ │ │ │ │ │ ├── pngerror.d │ │ │ │ │ │ ├── pngerror.dia │ │ │ │ │ │ ├── pngget.d │ │ │ │ │ │ ├── pngget.dia │ │ │ │ │ │ ├── pngmem.d │ │ │ │ │ │ ├── pngmem.dia │ │ │ │ │ │ ├── pngpread.d │ │ │ │ │ │ ├── pngpread.dia │ │ │ │ │ │ ├── pngread.d │ │ │ │ │ │ ├── pngread.dia │ │ │ │ │ │ ├── pngrio.d │ │ │ │ │ │ ├── pngrio.dia │ │ │ │ │ │ ├── pngrutil.d │ │ │ │ │ │ ├── pngrutil.dia │ │ │ │ │ │ ├── pngset.d │ │ │ │ │ │ ├── pngset.dia │ │ │ │ │ │ ├── pngtrans.d │ │ │ │ │ │ ├── pngtrans.dia │ │ │ │ │ │ ├── pngwio.d │ │ │ │ │ │ ├── pngwio.dia │ │ │ │ │ │ ├── pngwrite.d │ │ │ │ │ │ ├── pngwrite.dia │ │ │ │ │ │ ├── pngwtran.d │ │ │ │ │ │ ├── pngwtran.dia │ │ │ │ │ │ ├── pngwutil.d │ │ │ │ │ │ └── pngwutil.dia │ │ │ │ │ ├── build-state.dat │ │ │ │ │ ├── png-all-target-headers.hmap │ │ │ │ │ ├── png-generated-files.hmap │ │ │ │ │ ├── png-own-target-headers.hmap │ │ │ │ │ ├── png-project-headers.hmap │ │ │ │ │ ├── png.dep │ │ │ │ │ └── png.hmap │ │ │ ├── png.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── png │ │ │ │ └── png-Prefix.pch │ │ ├── pngbar.jpg │ │ ├── pngbar.png │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pngmem.c │ │ ├── pngnow.png │ │ ├── pngpread.c │ │ ├── pngpriv.h │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngstruct.h │ │ ├── pngtest │ │ ├── pngtest.c │ │ ├── pngtest.png │ │ ├── pngtrans.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ ├── pngwutil.c │ │ ├── projects │ │ │ ├── visualc71 │ │ │ │ ├── PRJ0041.mak │ │ │ │ ├── README.txt │ │ │ │ ├── README_zlib.txt │ │ │ │ ├── libpng.sln │ │ │ │ ├── libpng.vcproj │ │ │ │ ├── pngtest.vcproj │ │ │ │ └── zlib.vcproj │ │ │ └── vstudio │ │ │ │ ├── libpng │ │ │ │ └── libpng.vcxproj │ │ │ │ ├── pnglibconf │ │ │ │ └── pnglibconf.vcxproj │ │ │ │ ├── pngtest │ │ │ │ └── pngtest.vcxproj │ │ │ │ ├── pngvalid │ │ │ │ └── pngvalid.vcxproj │ │ │ │ ├── readme.txt │ │ │ │ ├── vstudio.sln │ │ │ │ ├── zlib.props │ │ │ │ └── zlib │ │ │ │ └── zlib.vcxproj │ │ └── scripts │ │ │ ├── README.txt │ │ │ ├── SCOPTIONS.ppc │ │ │ ├── checksym.awk │ │ │ ├── chkfmt │ │ │ ├── def.dfn │ │ │ ├── descrip.mms │ │ │ ├── libpng-config-body.in │ │ │ ├── libpng-config-head.in │ │ │ ├── libpng.pc.in │ │ │ ├── makefile.32sunu │ │ │ ├── makefile.64sunu │ │ │ ├── makefile.acorn │ │ │ ├── makefile.aix │ │ │ ├── makefile.amiga │ │ │ ├── makefile.atari │ │ │ ├── makefile.bc32 │ │ │ ├── makefile.beos │ │ │ ├── makefile.bor │ │ │ ├── makefile.cegcc │ │ │ ├── makefile.darwin │ │ │ ├── makefile.dec │ │ │ ├── makefile.dj2 │ │ │ ├── makefile.elf │ │ │ ├── makefile.freebsd │ │ │ ├── makefile.gcc │ │ │ ├── makefile.hp64 │ │ │ ├── makefile.hpgcc │ │ │ ├── makefile.hpux │ │ │ ├── makefile.ibmc │ │ │ ├── makefile.intel │ │ │ ├── makefile.knr │ │ │ ├── makefile.linux │ │ │ ├── makefile.mips │ │ │ ├── makefile.msc │ │ │ ├── makefile.ne12bsd │ │ │ ├── makefile.netbsd │ │ │ ├── makefile.openbsd │ │ │ ├── makefile.sco │ │ │ ├── makefile.sggcc │ │ │ ├── makefile.sgi │ │ │ ├── makefile.so9 │ │ │ ├── makefile.solaris │ │ │ ├── makefile.solaris-x86 │ │ │ ├── makefile.std │ │ │ ├── makefile.sunos │ │ │ ├── makefile.tc3 │ │ │ ├── makefile.vcwin32 │ │ │ ├── makevms.com │ │ │ ├── options.awk │ │ │ ├── pnglibconf.dfa │ │ │ ├── pnglibconf.h.prebuilt │ │ │ ├── pnglibconf.mak │ │ │ ├── pngwin.rc │ │ │ ├── smakefile.ppc │ │ │ ├── sym.dfn │ │ │ ├── symbols.def │ │ │ ├── symbols.dfn │ │ │ └── vers.dfn │ └── n64ios_arm.s └── substrate.h ├── README.md └── iN64-Plugins └── iN64-Plugins.xcodeproj ├── project.pbxproj └── project.xcworkspace └── contents.xcworkspacedata /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /N64iOS/Ads/AltAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Ads/AltAds.h -------------------------------------------------------------------------------- /N64iOS/Ads/AltAds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Ads/AltAds.m -------------------------------------------------------------------------------- /N64iOS/BTDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/BTDevice.h -------------------------------------------------------------------------------- /N64iOS/BTDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/BTDevice.m -------------------------------------------------------------------------------- /N64iOS/BTInquiryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/BTInquiryViewController.h -------------------------------------------------------------------------------- /N64iOS/BTInquiryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/BTInquiryViewController.m -------------------------------------------------------------------------------- /N64iOS/Frameworks/AVSystemController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/AVSystemController.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/CDAnonStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/CDAnonStruct.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/CGDirectDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/CGDirectDisplay.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/CoreSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/CoreSurface.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/GraphicsServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/GraphicsServices.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/IOKit/IOBSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/IOKit/IOBSD.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/IOKit/IOKitKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/IOKit/IOKitKeys.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/IOKit/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/IOKit/IOKitLib.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/IOKit/IOReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/IOKit/IOReturn.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/IOKit/IOSerialKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/IOKit/IOSerialKeys.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/IOKit/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/IOKit/IOTypes.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/IOKit/ioss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/IOKit/ioss.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/LayerKit/LKLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/LayerKit/LKLayer.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/LayerKit/LKTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/LayerKit/LKTransform.h -------------------------------------------------------------------------------- /N64iOS/Frameworks/UIKit-Private/UITable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/Frameworks/UIKit-Private/UITable.h -------------------------------------------------------------------------------- /N64iOS/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/MainWindow.xib -------------------------------------------------------------------------------- /N64iOS/N64iOS/N64iOS/N64AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/N64iOS/N64iOS/N64AppDelegate.h -------------------------------------------------------------------------------- /N64iOS/N64iOS/N64iOS/N64AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/N64iOS/N64iOS/N64AppDelegate.m -------------------------------------------------------------------------------- /N64iOS/N64iOS/N64iOS/N64Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/N64iOS/N64iOS/N64Options.h -------------------------------------------------------------------------------- /N64iOS/N64iOS/N64iOS/N64iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/N64iOS/N64iOS/N64iOS-Info.plist -------------------------------------------------------------------------------- /N64iOS/N64iOS/N64iOS/N64iOS-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/N64iOS/N64iOS/N64iOS-Prefix.pch -------------------------------------------------------------------------------- /N64iOS/N64iOS/N64iOS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /N64iOS/N64iOS/N64iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/N64iOS/N64iOS/main.m -------------------------------------------------------------------------------- /N64iOS/N64iOS/N64iOS/mupen64plus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/N64iOS/N64iOS/mupen64plus.conf -------------------------------------------------------------------------------- /N64iOS/N64iOS/build/Debug-iphoneos/N64iOS.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /N64iOS/NowPlayingController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/NowPlayingController.h -------------------------------------------------------------------------------- /N64iOS/NowPlayingController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/NowPlayingController.m -------------------------------------------------------------------------------- /N64iOS/OptionsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/OptionsController.h -------------------------------------------------------------------------------- /N64iOS/OptionsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/OptionsController.m -------------------------------------------------------------------------------- /N64iOS/RecentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/RecentController.h -------------------------------------------------------------------------------- /N64iOS/RecentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/RecentController.m -------------------------------------------------------------------------------- /N64iOS/RomController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/RomController.h -------------------------------------------------------------------------------- /N64iOS/RomController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/RomController.m -------------------------------------------------------------------------------- /N64iOS/SOApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/SOApplication.h -------------------------------------------------------------------------------- /N64iOS/SOApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/SOApplication.m -------------------------------------------------------------------------------- /N64iOS/SaveStatesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/SaveStatesController.h -------------------------------------------------------------------------------- /N64iOS/SaveStatesController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/SaveStatesController.m -------------------------------------------------------------------------------- /N64iOS/ShoutOutAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/ShoutOutAppDelegate.h -------------------------------------------------------------------------------- /N64iOS/ShoutOutAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/ShoutOutAppDelegate.m -------------------------------------------------------------------------------- /N64iOS/TabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/TabBar.h -------------------------------------------------------------------------------- /N64iOS/TabBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/TabBar.m -------------------------------------------------------------------------------- /N64iOS/WebBrowserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/WebBrowserViewController.h -------------------------------------------------------------------------------- /N64iOS/WebBrowserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/WebBrowserViewController.m -------------------------------------------------------------------------------- /N64iOS/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/helpers.h -------------------------------------------------------------------------------- /N64iOS/helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/helpers.m -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_atomic.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_audio.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_compat.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config.h.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config.h.default -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config.h.generated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config.h.generated -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config.h.in -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config_macosx.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config_minimal.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config_nintendods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config_nintendods.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config_pandora.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config_win32.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_config_wiz.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_copying.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_endian.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_error.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_events.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_haptic.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_keysym.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_main.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_name.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_opengles.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_pixels.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_platform.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_power.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_quit.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_rect.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_revision.h: -------------------------------------------------------------------------------- 1 | #define SDL_REVISION 5382 2 | -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_scancode.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_surface.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_thread.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_timer.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_types.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_version.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/SDL_video.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/begin_code.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/close_code.h -------------------------------------------------------------------------------- /N64iOS/include/SDL/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/SDL/doxyfile -------------------------------------------------------------------------------- /N64iOS/include/btstack/btstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/btstack.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/config.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/hal_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/hal_cpu.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/hal_tick.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/hal_uart_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/hal_uart_dma.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/hci_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/hci_cmds.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/linked_list.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/memory_pool.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/run_loop.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/sdp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/sdp_util.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/utils.h -------------------------------------------------------------------------------- /N64iOS/include/btstack/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/btstack/version.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/.svn/all-wcprops -------------------------------------------------------------------------------- /N64iOS/include/freetype/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/.svn/entries -------------------------------------------------------------------------------- /N64iOS/include/freetype/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /N64iOS/include/freetype/config/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /N64iOS/include/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/config/ftheader.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/config/ftoption.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/freetype.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftcache.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftcid.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/fterrors.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftimage.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftlist.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftmac.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftmm.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftotval.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftrender.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/fttypes.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ftxf86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ftxf86.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/ftcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/ftcalc.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/ftdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/ftdebug.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/ftobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/ftobjs.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/ftrfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/ftrfork.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/ftserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/ftserv.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/fttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/fttrace.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/ftvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/ftvalid.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/psaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/psaux.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/pshints.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/services/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /N64iOS/include/freetype/internal/sfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/internal/sfnt.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/t1tables.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/tttables.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/tttags.h -------------------------------------------------------------------------------- /N64iOS/include/freetype/ttunpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/include/freetype/ttunpat.h -------------------------------------------------------------------------------- /N64iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/main.m -------------------------------------------------------------------------------- /N64iOS/n64iphone-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/n64iphone-Info.plist -------------------------------------------------------------------------------- /N64iOS/n64iphone-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/n64iphone-Prefix.pch -------------------------------------------------------------------------------- /N64iOS/res/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/Default.png -------------------------------------------------------------------------------- /N64iOS/res/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/Info.plist -------------------------------------------------------------------------------- /N64iOS/res/controller_fs0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs0.png -------------------------------------------------------------------------------- /N64iOS/res/controller_fs0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs0.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_fs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs1.png -------------------------------------------------------------------------------- /N64iOS/res/controller_fs1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs1.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_fs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs2.png -------------------------------------------------------------------------------- /N64iOS/res/controller_fs2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs2.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_fs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs3.png -------------------------------------------------------------------------------- /N64iOS/res/controller_fs3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs3.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_fs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs4.png -------------------------------------------------------------------------------- /N64iOS/res/controller_fs4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs4.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_fs5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs5.png -------------------------------------------------------------------------------- /N64iOS/res/controller_fs5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_fs5.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_hs0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs0.png -------------------------------------------------------------------------------- /N64iOS/res/controller_hs0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs0.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_hs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs1.png -------------------------------------------------------------------------------- /N64iOS/res/controller_hs1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs1.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_hs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs2.png -------------------------------------------------------------------------------- /N64iOS/res/controller_hs2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs2.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_hs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs3.png -------------------------------------------------------------------------------- /N64iOS/res/controller_hs3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs3.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_hs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs4.png -------------------------------------------------------------------------------- /N64iOS/res/controller_hs4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs4.txt -------------------------------------------------------------------------------- /N64iOS/res/controller_hs5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs5.png -------------------------------------------------------------------------------- /N64iOS/res/controller_hs5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/controller_hs5.txt -------------------------------------------------------------------------------- /N64iOS/res/genres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/genres.png -------------------------------------------------------------------------------- /N64iOS/res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/icon.png -------------------------------------------------------------------------------- /N64iOS/res/nowplaying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/res/nowplaying.png -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/LICENSES -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/Makefile -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/README -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/RELEASE -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/TODO -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/bin/mupen64plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/bin/mupen64plus -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/debugger/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/debugger/types.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/doc/Audio_1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/doc/Audio_1.1.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/doc/Audio_1.2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/doc/Audio_1.2.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/doc/Input_1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/doc/Input_1.1.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/doc/Rsp_1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/doc/Rsp_1.1.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/doc/font-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/doc/font-license -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/doc/gpl-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/doc/gpl-license -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/doc/lgpl-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/doc/lgpl-license -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/dummy_audio/build/dummy_audio.build/Debug-iphoneos/dummy_audio.build/dummy_audio.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/dummy_audio/build/dummy_audio.build/Debug-iphoneos/dummy_audio.build/dummy_audio~.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/dummy_input/build/dummy_input.build/Debug-iphoneos/dummy_input.build/dummy_input.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/dummy_input/build/dummy_input.build/Debug-iphoneos/dummy_input.build/dummy_input~.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/dummy_video/build/dummy_video.build/Debug-iphoneos/dummy_video.build/dummy_video.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/dummy_video/build/dummy_video.build/Debug-iphoneos/dummy_video.build/dummy_video~.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/fonts/font.ttf -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/2xSAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/2xSAI.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/2xSAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/2xSAI.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/3DMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/3DMath.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/CRC.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/CRC.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/Combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/Combiner.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/Config.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/Debug.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3D.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3D.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DDKR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DDKR.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DDKR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DDKR.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DEX.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DEX.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DEX2.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DEX2.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DPD.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DPD.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/F3DWRUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/F3DWRUS.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/GBI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/GBI.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/GBI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/GBI.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/L3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/L3D.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/L3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/L3D.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/L3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/L3DEX.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/L3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/L3DEX.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/L3DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/L3DEX2.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/L3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/L3DEX2.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/Makefile -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/N64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/N64.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/N64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/N64.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/OpenGL.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/OpenGL.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/RDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/RDP.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/RDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/RDP.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/RSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/RSP.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/RSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/RSP.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/S2DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/S2DEX.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/S2DEX.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/S2DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/S2DEX2.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/S2DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/S2DEX2.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/Textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/Textures.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/Types.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/VI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/VI.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/VI.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/convert.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/gDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/gDP.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/gDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/gDP.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/gSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/gSP.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/gSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/gSP.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/glN64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/glN64.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/glN64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/glN64.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glN64/glN64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glN64/glN64.so -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/3dmath.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/AUTHORS: -------------------------------------------------------------------------------- 1 | Dave2001 2 | Gonetz 3 | Gugaman 4 | Hacktarux 5 | Josh 6 | Ziggy 7 | Günther -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/CRC.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/CRC.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/Gfx1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/Gfx1.3.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/INSTALL -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/Ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/Ini.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/Ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/Ini.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/LICENSES -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/Main.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/Makefile -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/TexMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/TexMod.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/Tmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/Tmem.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/Util.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/Util.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/config.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/font.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/font.tex -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/gpl.txt -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/rdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/rdp.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/rdp.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/glide64/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/glide64/ucode.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/icons/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/icons/LICENSES -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/icons/europe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/icons/europe.png -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/icons/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/icons/france.png -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/icons/italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/icons/italy.png -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/icons/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/icons/japan.png -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/icons/spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/icons/spain.png -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/icons/usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/icons/usa.png -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/install.sh -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/jttl_audio/build/jttl_audio.build/Debug-iphoneos/jttl_audio.build/jttl_audio.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/jttl_audio/build/jttl_audio.build/Debug-iphoneos/jttl_audio.build/jttl_audio~.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/jttl_audio/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/jttl_audio/gui.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/lang/english.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/lang/english.lng -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/7zip/7zIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/7zip/7zIn.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/7zip/7zIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/7zip/7zIn.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/adler32.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/cheat.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/cheat.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/config.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/config.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/gui.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/lirc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/lirc.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/lirc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/lirc.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/lzma/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/lzma/io.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/lzma/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/lzma/main.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/main.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/main.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/md5.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/md5.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/plugin.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/plugin.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/rom.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/rom.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/romcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/romcache.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/romcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/romcache.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/translate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/translate.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/translate.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/util.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/util.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/version.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/zip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/zip/crypt.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/zip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/zip/ioapi.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/zip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/zip/ioapi.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/zip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/zip/unzip.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/main/zip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/main/zip/unzip.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/dma.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/dma.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/memory.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/memory.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/pif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/pif.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/pif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/pif.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/pif2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/pif2.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/tlb.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/memory/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/memory/tlb.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/mupen64plus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/mupen64plus.ini -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/opengl/OGLFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/opengl/OGLFT.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/opengl/OGLFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/opengl/OGLFT.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/opengl/osd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/opengl/osd.cpp -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/opengl/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/opengl/osd.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/pre.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/pre.mk -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/pre.mk.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/pre.mk.win32 -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/bc.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/cop0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/cop0.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/cop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/cop1.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/cop1_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/cop1_d.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/cop1_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/cop1_l.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/cop1_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/cop1_s.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/cop1_w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/cop1_w.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/interupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/interupt.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/interupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/interupt.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/macros.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/ops.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/profile.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/r4300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/r4300.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/r4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/r4300.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/recomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/recomp.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/recomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/recomp.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/recomph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/recomph.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/regimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/regimm.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/special.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/tlb.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/x86/gbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/x86/gbc.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/r4300/x86/gtlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/r4300/x86/gtlb.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/release.mk -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/rsp_hle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/rsp_hle/Makefile -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/rsp_hle/hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/rsp_hle/hle.h -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/rsp_hle/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/rsp_hle/jpeg.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/rsp_hle/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/rsp_hle/main.c -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/uninstall.sh -------------------------------------------------------------------------------- /N64iOS/src/Mupen64Plus/version.win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/Mupen64Plus/version.win32.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/.indent.pro -------------------------------------------------------------------------------- /N64iOS/src/SDL/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/.svn/all-wcprops -------------------------------------------------------------------------------- /N64iOS/src/SDL/.svn/dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/.svn/dir-prop-base -------------------------------------------------------------------------------- /N64iOS/src/SDL/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/.svn/prop-base/Borland.zip.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/.svn/prop-base/Watcom-Win32.zip.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/BUGS -------------------------------------------------------------------------------- /N64iOS/src/SDL/Borland.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Borland.html -------------------------------------------------------------------------------- /N64iOS/src/SDL/Borland.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Borland.zip -------------------------------------------------------------------------------- /N64iOS/src/SDL/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/COPYING -------------------------------------------------------------------------------- /N64iOS/src/SDL/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/CREDITS -------------------------------------------------------------------------------- /N64iOS/src/SDL/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/INSTALL -------------------------------------------------------------------------------- /N64iOS/src/SDL/Makefile.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Makefile.ds -------------------------------------------------------------------------------- /N64iOS/src/SDL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Makefile.in -------------------------------------------------------------------------------- /N64iOS/src/SDL/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Makefile.minimal -------------------------------------------------------------------------------- /N64iOS/src/SDL/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Makefile.pandora -------------------------------------------------------------------------------- /N64iOS/src/SDL/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Makefile.wiz -------------------------------------------------------------------------------- /N64iOS/src/SDL/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/NOTES -------------------------------------------------------------------------------- /N64iOS/src/SDL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README -------------------------------------------------------------------------------- /N64iOS/src/SDL/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README-SDL.txt -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.BeOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.BeOS -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.DirectFB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.DirectFB -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.MacOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.MacOSX -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.PS3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.PS3 -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.Porting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.Porting -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.QNX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.QNX -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.RISCOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.RISCOS -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.SVN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.SVN -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.Watcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.Watcom -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.WinCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.WinCE -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.iphoneos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.iphoneos -------------------------------------------------------------------------------- /N64iOS/src/SDL/README.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/README.pandora -------------------------------------------------------------------------------- /N64iOS/src/SDL/SDL.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/SDL.spec.in -------------------------------------------------------------------------------- /N64iOS/src/SDL/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/TODO -------------------------------------------------------------------------------- /N64iOS/src/SDL/UNDER_CONSTRUCTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/UNDER_CONSTRUCTION.txt -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC.html -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/.svn/all-wcprops -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/SDL.sln -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/SDL/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/SDL/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/SDL/SDL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/SDL/SDL.vcproj -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/SDL/Version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/SDL/Version.rc -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/SDL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/SDL/resource.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/SDL_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/SDL_VS2008.sln -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/tests/automated/.svn/prop-base/automated.vcproj.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualC/tests/tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualC/tests/tests.sln -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualCE/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualCE/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualCE/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualCE/SDL.sln -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualCE/SDL.vcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualCE/SDL.vcw -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualCE/SDL/SDL.vcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualCE/SDL/SDL.vcp -------------------------------------------------------------------------------- /N64iOS/src/SDL/VisualCE/SDL/SDL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/VisualCE/SDL/SDL.vcproj -------------------------------------------------------------------------------- /N64iOS/src/SDL/Watcom-Win32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Watcom-Win32.zip -------------------------------------------------------------------------------- /N64iOS/src/SDL/WhatsNew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/WhatsNew -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode-iPhoneOS/SDL/build/Debug-iphoneos/usr/local/include/SDL_revision.h: -------------------------------------------------------------------------------- 1 | #define SDL_REVISION 5382 2 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Xcode/.svn/all-wcprops -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Xcode/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/.svn/prop-base/mkxcode.csh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/.svn/prop-base/package.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/.svn/prop-base/stationary.csh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/.svn/prop-base/uninstall.csh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/SDL/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Xcode/SDL/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/SDL/SDL.xcodeproj/.svn/prop-base/project.pbxproj.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/SDL/pkg-support/.svn/prop-base/SDL-devel.info.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/SDL/pkg-support/.svn/prop-base/SDL.info.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/SDL/pkg-support/resources/.svn/prop-base/License.rtf.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/SDL/pkg-support/resources/.svn/prop-base/ReadMe.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/mkxcode.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Xcode/mkxcode.csh -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Xcode/package -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/stationary.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Xcode/stationary.csh -------------------------------------------------------------------------------- /N64iOS/src/SDL/Xcode/uninstall.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/Xcode/uninstall.csh -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/alsa.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/esd.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/libtool.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/ltdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/ltdl.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/autogen.sh -------------------------------------------------------------------------------- /N64iOS/src/SDL/build-scripts/.svn/prop-base/showrev.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/build-scripts/.svn/prop-base/snapshot.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/build-scripts/.svn/prop-base/updaterev.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/build-scripts/config.sub -------------------------------------------------------------------------------- /N64iOS/src/SDL/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/build-scripts/install-sh -------------------------------------------------------------------------------- /N64iOS/src/SDL/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /N64iOS/src/SDL/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/build-scripts/showrev.sh -------------------------------------------------------------------------------- /N64iOS/src/SDL/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/configure.in -------------------------------------------------------------------------------- /N64iOS/src/SDL/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/docs.html -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/.svn/all-wcprops -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_atomic.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_audio.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_compat.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_config.h: -------------------------------------------------------------------------------- 1 | SDL_config.h.default -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_config.h.in -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_copying.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_endian.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_error.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_events.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_haptic.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_joystick.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_keyboard.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_keysym.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_loadso.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_main.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_mouse.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_mutex.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_name.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_opengl.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_opengles.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_pixels.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_platform.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_power.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_quit.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_rect.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_revision.h: -------------------------------------------------------------------------------- 1 | #define SDL_REVISION 5382 2 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_rwops.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_scancode.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_stdinc.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_surface.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_syswm.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_thread.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_timer.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_types.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_version.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/SDL_video.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/begin_code.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/close_code.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/include/doxyfile -------------------------------------------------------------------------------- /N64iOS/src/SDL/sdl-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/sdl-config.in -------------------------------------------------------------------------------- /N64iOS/src/SDL/sdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/sdl.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/sdl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/sdl.pc.in -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/.svn/all-wcprops -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/.svn/dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/.svn/dir-prop-base -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/SDL.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/SDL_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/SDL_compat.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/SDL_error.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/SDL_error_c.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/SDL_fatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/SDL_fatal.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/SDL_fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/SDL_fatal.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/atomic/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/atomic/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/.svn/prop-base/sdlgenaudiocvt.pl.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_audiomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_audiomem.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/cpuinfo/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/cpuinfo/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/events/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/events/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/events/SDL_events.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/events/SDL_quit.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/file/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/file/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/haptic/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/haptic/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/e_log.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/e_pow.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/k_cos.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/k_sin.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/math.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/math_private.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/s_copysign.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/s_cos.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/s_fabs.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/s_floor.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/libm/s_sin.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/loadso/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/loadso/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/main/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/main/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/power/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/power/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/power/SDL_power.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/stdlib/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/stdlib/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/thread/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/thread/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/timer/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/timer/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/timer/SDL_systimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/timer/SDL_systimer.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/.svn/prop-base/SDL_blit_slow.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/.svn/prop-base/SDL_fillrect.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/.svn/prop-base/sdlgenblit.pl.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_blit.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_blit.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_draw.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_drawline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_drawline.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_gamma.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_glfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_glfuncs.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_leaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_leaks.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_rect.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_surface.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_sysvideo.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_video.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_yuv_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_yuv_mmx.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_yuv_sw.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/Xext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/Xext/README -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/Xext/XME/xme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/Xext/XME/xme.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/Xext/Xv/Xv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/Xext/Xv/Xv.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/mmx.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /N64iOS/src/SDL/src/video/win32/wmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/src/video/win32/wmmsg.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/.gdbinit -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/.svn/all-wcprops -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/.svn/dir-prop-base -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/.svn/entries -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/prop-base/gcc-fat.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/prop-base/icon.bmp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/prop-base/moose.dat.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/prop-base/sail.bmp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/prop-base/sample.bmp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/prop-base/sample.wav.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/.svn/prop-base/utf8.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/COPYING -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/Makefile.in -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/README -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/acinclude.m4 -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/autogen.sh -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/automated/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/automated/Makefile -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/automated/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/automated/README -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/automated/SDL_at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/automated/SDL_at.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/automated/SDL_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/automated/SDL_at.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/automated/rwops/.svn/text-base/read.svn-base: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/automated/rwops/read: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/automated/testsdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/automated/testsdl.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/checkkeys.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/common.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/common.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/configure.in -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/gcc-fat.sh -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/graywin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/graywin.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/icon.bmp -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/loopwave.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/moose.dat -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/nds-test-progs/general/.svn/prop-base/Makefile.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/nds-test-progs/general/source/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/nds-test-progs/sprite/.svn/prop-base/Makefile.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/nds-test-progs/sprite/source/.svn/prop-base/common.c.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/nds-test-progs/sprite/source/.svn/prop-base/common.h.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/nds-test-progs/sprite2/.svn/prop-base/Makefile.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/nds-test-progs/sprite2/source/.svn/prop-base/common.c.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/nds-test-progs/sprite2/source/.svn/prop-base/common.h.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/picture.xbm -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/sail.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/sail.bmp -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/sample.bmp -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/sample.wav -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testalpha.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testatomic.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testaudioinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testaudioinfo.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testbitmap.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testblitspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testblitspeed.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testcursor.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testdraw2.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testdyngl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testdyngl.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testdyngles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testdyngles.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testerror.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testfile.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testgamma.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testgl.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testgl2.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testgles.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testhaptic.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testhread.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testiconv.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testime.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testintersections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testintersections.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testjoystick.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testkeys.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testloadso.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testlock.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testmmousetablet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testmmousetablet.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testmultiaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testmultiaudio.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testnative.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testnative.h -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testnativecocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testnativecocoa.m -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testnativew32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testnativew32.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testnativex11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testnativex11.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testoverlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testoverlay.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testoverlay2.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testpalette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testpalette.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testplatform.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testpower.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testresample.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testsem.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testsprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testsprite.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testsprite2.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testspriteminimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testspriteminimal.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testtimer.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testver.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testvidinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testvidinfo.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testwin.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testwm.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/testwm2.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/threadwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/threadwin.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/torturethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/torturethread.c -------------------------------------------------------------------------------- /N64iOS/src/SDL/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/SDL/test/utf8.txt -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/2xSAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/2xSAI.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/2xSAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/2xSAI.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/3DMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/3DMath.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/COPYING -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/CRC.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/CRC.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/Config.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/Debug.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/Debug.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3D.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3D.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3DDKR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3DDKR.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3DEX.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3DEX.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3DEX2.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3DPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3DPD.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3DPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3DPD.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/F3DWRUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/F3DWRUS.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/GBI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/GBI.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/GBI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/GBI.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/L3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/L3D.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/L3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/L3D.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/L3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/L3DEX.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/L3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/L3DEX.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/L3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/L3DEX2.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/Makefile -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/N64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/N64.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/N64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/N64.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/OpenGL.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/RDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/RDP.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/RDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/RDP.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/RSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/RSP.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/RSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/RSP.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/S2DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/S2DEX.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/S2DEX.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/S2DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/S2DEX2.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/Types.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/VI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/VI.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/VI.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/build/gles2n64-read-only.build/Debug-iphoneos/gles2n64-read-only.build/gles2n64-read-only.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/build/gles2n64-read-only.build/Debug-iphoneos/gles2n64-read-only.build/gles2n64-read-only~.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/convert.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/gDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/gDP.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/gDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/gDP.h -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/gSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/gSP.cpp -------------------------------------------------------------------------------- /N64iOS/src/gles2n64-read-only/gSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/gles2n64-read-only/gSP.h -------------------------------------------------------------------------------- /N64iOS/src/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/ANNOUNCE -------------------------------------------------------------------------------- /N64iOS/src/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/CHANGES -------------------------------------------------------------------------------- /N64iOS/src/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /N64iOS/src/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/INSTALL -------------------------------------------------------------------------------- /N64iOS/src/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/LICENSE -------------------------------------------------------------------------------- /N64iOS/src/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/README -------------------------------------------------------------------------------- /N64iOS/src/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/TODO -------------------------------------------------------------------------------- /N64iOS/src/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/configure -------------------------------------------------------------------------------- /N64iOS/src/libpng/contrib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/contrib/README.txt -------------------------------------------------------------------------------- /N64iOS/src/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/example.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/libpng-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/libpng-config.in -------------------------------------------------------------------------------- /N64iOS/src/libpng/libpng-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/libpng-manual.txt -------------------------------------------------------------------------------- /N64iOS/src/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/libpng.3 -------------------------------------------------------------------------------- /N64iOS/src/libpng/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/libpng.a -------------------------------------------------------------------------------- /N64iOS/src/libpng/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/libpng.pc.in -------------------------------------------------------------------------------- /N64iOS/src/libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/libpngpf.3 -------------------------------------------------------------------------------- /N64iOS/src/libpng/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/makefile -------------------------------------------------------------------------------- /N64iOS/src/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/png.5 -------------------------------------------------------------------------------- /N64iOS/src/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/png.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/png.h -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngbar.jpg -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngbar.png -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngconf.h -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngdebug.h -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngerror.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngget.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pnginfo.h -------------------------------------------------------------------------------- /N64iOS/src/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pnglibconf.h -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngmem.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngnow.png -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngpread.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngpriv.h -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngread.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngrio.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngrtran.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngrutil.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngset.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngstruct.h -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngtest -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngtest.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngtest.png -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngtrans.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngwio.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngwrite.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngwtran.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/pngwutil.c -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/README.txt -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/SCOPTIONS.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/SCOPTIONS.ppc -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/checksym.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/checksym.awk -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/chkfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/chkfmt -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/def.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/def.dfn -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/descrip.mms -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/libpng.pc.in -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.aix -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.bc32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.bc32 -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.beos -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.bor -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.dec -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.dj2 -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.elf -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.gcc -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.hp64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.hp64 -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.hpux -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.ibmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.ibmc -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.knr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.knr -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.mips -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.msc -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.sco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.sco -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.sgi -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.so9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.so9 -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.std -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makefile.tc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makefile.tc3 -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/makevms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/makevms.com -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/options.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/options.awk -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/pngwin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/pngwin.rc -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/smakefile.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/smakefile.ppc -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/sym.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/sym.dfn -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/symbols.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/symbols.def -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/symbols.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/symbols.dfn -------------------------------------------------------------------------------- /N64iOS/src/libpng/scripts/vers.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/libpng/scripts/vers.dfn -------------------------------------------------------------------------------- /N64iOS/src/n64ios_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/src/n64ios_arm.s -------------------------------------------------------------------------------- /N64iOS/substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/N64iOS/substrate.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/N64iOS/HEAD/README.md --------------------------------------------------------------------------------