├── .gitignore ├── README.md ├── base ├── autoexec.cfg ├── def │ └── entities.def ├── default.cfg ├── ffa.cfg ├── fonts │ ├── Bitstream_Very_Fonts_Copyright.txt │ ├── FreeMono.ttf │ ├── FreeMonoBold.ttf │ ├── FreeMonoBoldOblique.ttf │ ├── FreeMonoOblique.ttf │ ├── FreeSans.ttf │ ├── FreeSansBold.ttf │ ├── FreeSansBoldOblique.ttf │ ├── FreeSansOblique.ttf │ ├── FreeSerif.ttf │ ├── FreeSerifBold.ttf │ ├── FreeSerifBoldItalic.ttf │ ├── FreeSerifItalic.ttf │ ├── Vera.ttf │ ├── VeraBI.ttf │ ├── VeraBd.ttf │ ├── VeraIt.ttf │ ├── VeraMoBI.ttf │ ├── VeraMoBd.ttf │ ├── VeraMoIt.ttf │ ├── VeraMono.ttf │ ├── VeraSe.ttf │ └── VeraSeBd.ttf ├── glsl │ ├── bloom_fp.glsl │ ├── bloom_vp.glsl │ ├── blurX_fp.glsl │ ├── blurX_vp.glsl │ ├── blurY_fp.glsl │ ├── blurY_vp.glsl │ ├── cameraEffects_fp.glsl │ ├── cameraEffects_vp.glsl │ ├── contrast_fp.glsl │ ├── contrast_vp.glsl │ ├── debugShadowMap_fp.glsl │ ├── debugShadowMap_vp.glsl │ ├── deferredLighting_fp.glsl │ ├── deferredLighting_vp.glsl │ ├── deferredShadowing_proj_fp.glsl │ ├── deferredShadowing_proj_vp.glsl │ ├── deformVertexes_vp.glsl │ ├── depthOfField_fp.glsl │ ├── depthOfField_vp.glsl │ ├── depthToColor_fp.glsl │ ├── depthToColor_vp.glsl │ ├── dispersion_C_fp.glsl │ ├── dispersion_C_vp.glsl │ ├── fogGlobal_fp.glsl │ ├── fogGlobal_vp.glsl │ ├── fogQuake3_fp.glsl │ ├── fogQuake3_vp.glsl │ ├── forwardLighting_fp.glsl │ ├── forwardLighting_vp.glsl │ ├── generic_fp.glsl │ ├── generic_vp.glsl │ ├── geometricFill_fp.glsl │ ├── geometricFill_vp.glsl │ ├── heatHaze_fp.glsl │ ├── heatHaze_vp.glsl │ ├── lightMapping_fp.glsl │ ├── lightMapping_vp.glsl │ ├── lightVolume_omni_fp.glsl │ ├── lightVolume_omni_vp.glsl │ ├── liquid_fp.glsl │ ├── liquid_vp.glsl │ ├── motionBlur_fp.glsl │ ├── motionBlur_vp.glsl │ ├── portal_fp.glsl │ ├── portal_vp.glsl │ ├── reflection_CB_fp.glsl │ ├── reflection_CB_vp.glsl │ ├── refraction_C_fp.glsl │ ├── refraction_C_vp.glsl │ ├── reliefMapping_fp.glsl │ ├── rotoscope_fp.glsl │ ├── rotoscope_vp.glsl │ ├── screenSpaceAmbientOcclusion_fp.glsl │ ├── screenSpaceAmbientOcclusion_vp.glsl │ ├── screen_fp.glsl │ ├── screen_vp.glsl │ ├── shadowFill_fp.glsl │ ├── shadowFill_vp.glsl │ ├── skybox_fp.glsl │ ├── skybox_vp.glsl │ ├── toneMapping_fp.glsl │ ├── toneMapping_vp.glsl │ ├── vertexAnimation_vp.glsl │ ├── vertexLighting_DBS_entity_fp.glsl │ ├── vertexLighting_DBS_entity_vp.glsl │ ├── vertexLighting_DBS_world_fp.glsl │ ├── vertexLighting_DBS_world_vp.glsl │ ├── vertexSkinning_vp.glsl │ ├── volumetricFog_fp.glsl │ └── volumetricFog_vp.glsl ├── materials │ └── player_visor.mtr └── ui │ ├── assets │ ├── 3_cursor3.tga │ ├── backarrow.tga │ ├── backarrow_alt.tga │ ├── fadebox.tga │ ├── forwardarrow.tga │ ├── forwardarrow_alt.tga │ ├── framebutton.tga │ ├── gradientbar2.tga │ ├── halfgradleft.tga │ ├── halfgradright.tga │ ├── mainmenu.jpg │ ├── scrollbar.tga │ ├── scrollbar_arrow_dwn_a.tga │ ├── scrollbar_arrow_left.tga │ ├── scrollbar_arrow_right.tga │ ├── scrollbar_arrow_up_a.tga │ ├── scrollbar_thumb.tga │ ├── slider2.tga │ ├── sliderbutt_1.tga │ ├── title.tga │ └── verticalgradient.tga │ ├── cgame │ ├── hud.menu │ ├── score.menu │ └── teamscore.menu │ ├── connect.menu │ ├── createfavorite.menu │ ├── createserver.menu │ ├── demo.menu │ ├── download.menu │ ├── drop.menu │ ├── error.menu │ ├── findplayer.menu │ ├── hud.txt │ ├── ingame.menu │ ├── ingame.txt │ ├── ingame_game.menu │ ├── ingame_help.menu │ ├── ingame_leave.menu │ ├── ingame_options.menu │ ├── joinserver.menu │ ├── main.menu │ ├── menudef.h │ ├── menus.txt │ ├── mod.menu │ ├── news.menu │ ├── options.menu │ ├── password.menu │ ├── quit.menu │ └── serverinfo.menu ├── code ├── .clang-format-cpp ├── .clang-format-header ├── astyle-cpp.ini ├── astyle-header.ini ├── astyle.exe ├── clang-format.exe ├── engine │ ├── botlib │ │ ├── aasfile.h │ │ ├── be_aas_bsp.h │ │ ├── be_aas_bspq3.c │ │ ├── be_aas_cluster.c │ │ ├── be_aas_cluster.h │ │ ├── be_aas_debug.c │ │ ├── be_aas_debug.h │ │ ├── be_aas_def.h │ │ ├── be_aas_entity.c │ │ ├── be_aas_entity.h │ │ ├── be_aas_file.c │ │ ├── be_aas_file.h │ │ ├── be_aas_funcs.h │ │ ├── be_aas_main.c │ │ ├── be_aas_main.h │ │ ├── be_aas_move.c │ │ ├── be_aas_move.h │ │ ├── be_aas_optimize.c │ │ ├── be_aas_optimize.h │ │ ├── be_aas_reach.c │ │ ├── be_aas_reach.h │ │ ├── be_aas_route.c │ │ ├── be_aas_route.h │ │ ├── be_aas_routealt.c │ │ ├── be_aas_routealt.h │ │ ├── be_aas_sample.c │ │ ├── be_aas_sample.h │ │ ├── be_ai_char.c │ │ ├── be_ai_chat.c │ │ ├── be_ai_gen.c │ │ ├── be_ai_goal.c │ │ ├── be_ai_move.c │ │ ├── be_ai_weap.c │ │ ├── be_ai_weight.c │ │ ├── be_ai_weight.h │ │ ├── be_ea.c │ │ ├── be_interface.c │ │ ├── be_interface.h │ │ ├── l_crc.c │ │ ├── l_crc.h │ │ ├── l_libvar.c │ │ ├── l_libvar.h │ │ ├── l_log.c │ │ ├── l_log.h │ │ ├── l_memory.c │ │ ├── l_memory.h │ │ ├── l_precomp.c │ │ ├── l_precomp.h │ │ ├── l_script.c │ │ ├── l_script.h │ │ ├── l_struct.c │ │ ├── l_struct.h │ │ └── l_utils.h │ ├── client │ │ ├── cin_ogm.c │ │ ├── cl_avi.c │ │ ├── cl_cgame.c │ │ ├── cl_cin.c │ │ ├── cl_console.c │ │ ├── cl_curl.c │ │ ├── cl_curl.h │ │ ├── cl_input.c │ │ ├── cl_keys.c │ │ ├── cl_main.c │ │ ├── cl_net_chan.c │ │ ├── cl_parse.c │ │ ├── cl_scrn.c │ │ ├── cl_ui.c │ │ ├── client.h │ │ └── keys.h │ ├── collision │ │ ├── cm_bullet.cpp │ │ ├── cm_load.c │ │ ├── cm_local.h │ │ ├── cm_patch.c │ │ ├── cm_polylib.c │ │ ├── cm_polylib.h │ │ ├── cm_public.h │ │ ├── cm_test.c │ │ ├── cm_trace.c │ │ └── cm_trisoup.c │ ├── null │ │ ├── null_client.c │ │ ├── null_glimp.c │ │ ├── null_input.c │ │ ├── null_main.c │ │ ├── null_net.c │ │ └── null_snddma.c │ ├── qcommon │ │ ├── cmd.c │ │ ├── common.c │ │ ├── cvar.c │ │ ├── files.c │ │ ├── huffman.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── msg.c │ │ ├── net_chan.c │ │ ├── net_ip.c │ │ ├── parse.c │ │ ├── qcommon.h │ │ ├── qfiles.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ └── vm.c │ ├── renderer │ │ ├── gl_shader.cpp │ │ ├── gl_shader.h │ │ ├── rendererGL.def │ │ ├── tr_animation.c │ │ ├── tr_animation_mdm.c │ │ ├── tr_backend.cpp │ │ ├── tr_bsp.c │ │ ├── tr_cmds.c │ │ ├── tr_curve.c │ │ ├── tr_decals.c │ │ ├── tr_fbo.c │ │ ├── tr_flares.c │ │ ├── tr_font.c │ │ ├── tr_image.c │ │ ├── tr_image_dds.c │ │ ├── tr_image_exr.cpp │ │ ├── tr_image_jpg.c │ │ ├── tr_image_png.c │ │ ├── tr_image_tga.c │ │ ├── tr_init.cpp │ │ ├── tr_light.c │ │ ├── tr_local.h │ │ ├── tr_main.c │ │ ├── tr_marks.c │ │ ├── tr_mesh.c │ │ ├── tr_model.c │ │ ├── tr_model_md3.c │ │ ├── tr_model_md5.c │ │ ├── tr_model_mdc.c │ │ ├── tr_model_mdm.c │ │ ├── tr_model_psk.c │ │ ├── tr_model_skel.c │ │ ├── tr_model_skel.h │ │ ├── tr_noise.c │ │ ├── tr_public.h │ │ ├── tr_scene.c │ │ ├── tr_shade.cpp │ │ ├── tr_shade_calc.c │ │ ├── tr_shader.c │ │ ├── tr_shadows.c │ │ ├── tr_skin.c │ │ ├── tr_sky.cpp │ │ ├── tr_surface.c │ │ ├── tr_vbo.c │ │ └── tr_world.cpp │ ├── server │ │ ├── server.h │ │ ├── sv_bot.c │ │ ├── sv_ccmds.c │ │ ├── sv_client.c │ │ ├── sv_game.c │ │ ├── sv_init.c │ │ ├── sv_main.c │ │ ├── sv_net_chan.c │ │ ├── sv_rankings.c │ │ ├── sv_snapshot.c │ │ └── sv_world.c │ ├── sound │ │ ├── qal.c │ │ ├── qal.h │ │ ├── snd_adpcm.c │ │ ├── snd_altivec.c │ │ ├── snd_codec.c │ │ ├── snd_codec.h │ │ ├── snd_codec_ogg.c │ │ ├── snd_codec_opus.c │ │ ├── snd_codec_wav.c │ │ ├── snd_dma.c │ │ ├── snd_local.h │ │ ├── snd_main.c │ │ ├── snd_mem.c │ │ ├── snd_mix.c │ │ ├── snd_openal.c │ │ ├── snd_public.h │ │ └── snd_wavelet.c │ └── sys │ │ ├── con_log.c │ │ ├── con_passive.c │ │ ├── con_tty.c │ │ ├── con_win32.c │ │ ├── qe3.ico │ │ ├── sdl_gamma.c │ │ ├── sdl_glimp.c │ │ ├── sdl_icon.h │ │ ├── sdl_input.c │ │ ├── sdl_snd.c │ │ ├── sdl_vid.c │ │ ├── sys_loadlib.h │ │ ├── sys_local.h │ │ ├── sys_main.c │ │ ├── sys_unix.c │ │ ├── sys_win32.c │ │ ├── win_resource.h │ │ └── win_resource.rc ├── format_code.bat ├── format_code.sh ├── format_slimvoids.py ├── games │ ├── default │ │ ├── cgame │ │ │ ├── cg_consolecmds.c │ │ │ ├── cg_draw.c │ │ │ ├── cg_drawtools.c │ │ │ ├── cg_effects.c │ │ │ ├── cg_ents.c │ │ │ ├── cg_event.c │ │ │ ├── cg_info.c │ │ │ ├── cg_local.h │ │ │ ├── cg_localents.c │ │ │ ├── cg_main.c │ │ │ ├── cg_marks.c │ │ │ ├── cg_newdraw.c │ │ │ ├── cg_particles.c │ │ │ ├── cg_players.c │ │ │ ├── cg_playerstate.c │ │ │ ├── cg_predict.c │ │ │ ├── cg_scoreboard.c │ │ │ ├── cg_servercmds.c │ │ │ ├── cg_snapshot.c │ │ │ ├── cg_syscalls.c │ │ │ ├── cg_view.c │ │ │ ├── cg_weapons.c │ │ │ └── premake5.lua │ │ ├── game │ │ │ ├── ai_chat.c │ │ │ ├── ai_chat.h │ │ │ ├── ai_cmd.c │ │ │ ├── ai_cmd.h │ │ │ ├── ai_dmnet.c │ │ │ ├── ai_dmnet.h │ │ │ ├── ai_dmq3.c │ │ │ ├── ai_dmq3.h │ │ │ ├── ai_main.c │ │ │ ├── ai_main.h │ │ │ ├── ai_team.c │ │ │ ├── ai_team.h │ │ │ ├── ai_vcmd.c │ │ │ ├── ai_vcmd.h │ │ │ ├── bg_lib.c │ │ │ ├── bg_lib.h │ │ │ ├── bg_local.h │ │ │ ├── bg_misc.c │ │ │ ├── bg_pmove.c │ │ │ ├── bg_slidemove.c │ │ │ ├── chars.h │ │ │ ├── g_active.c │ │ │ ├── g_arenas.c │ │ │ ├── g_bot.c │ │ │ ├── g_client.c │ │ │ ├── g_cmds.c │ │ │ ├── g_combat.c │ │ │ ├── g_items.c │ │ │ ├── g_local.h │ │ │ ├── g_main.c │ │ │ ├── g_mem.c │ │ │ ├── g_misc.c │ │ │ ├── g_missile.c │ │ │ ├── g_mover.c │ │ │ ├── g_rankings.c │ │ │ ├── g_rankings.h │ │ │ ├── g_session.c │ │ │ ├── g_spawn.c │ │ │ ├── g_svcmds.c │ │ │ ├── g_syscalls.asm │ │ │ ├── g_syscalls.c │ │ │ ├── g_target.c │ │ │ ├── g_team.c │ │ │ ├── g_team.h │ │ │ ├── g_trigger.c │ │ │ ├── g_utils.c │ │ │ ├── g_weapon.c │ │ │ ├── game.def │ │ │ ├── inv.h │ │ │ ├── match.h │ │ │ ├── premake5.lua │ │ │ └── syn.h │ │ ├── q3_ui │ │ │ ├── premake5.lua │ │ │ ├── ui.def │ │ │ ├── ui_addbots.c │ │ │ ├── ui_atoms.c │ │ │ ├── ui_cdkey.c │ │ │ ├── ui_cinematics.c │ │ │ ├── ui_confirm.c │ │ │ ├── ui_connect.c │ │ │ ├── ui_controls2.c │ │ │ ├── ui_credits.c │ │ │ ├── ui_demo2.c │ │ │ ├── ui_display.c │ │ │ ├── ui_gameinfo.c │ │ │ ├── ui_ingame.c │ │ │ ├── ui_loadconfig.c │ │ │ ├── ui_local.h │ │ │ ├── ui_login.c │ │ │ ├── ui_main.c │ │ │ ├── ui_menu.c │ │ │ ├── ui_mfield.c │ │ │ ├── ui_mods.c │ │ │ ├── ui_network.c │ │ │ ├── ui_options.c │ │ │ ├── ui_playermodel.c │ │ │ ├── ui_players.c │ │ │ ├── ui_playersettings.c │ │ │ ├── ui_preferences.c │ │ │ ├── ui_qmenu.c │ │ │ ├── ui_rankings.c │ │ │ ├── ui_rankstatus.c │ │ │ ├── ui_removebots.c │ │ │ ├── ui_saveconfig.c │ │ │ ├── ui_serverinfo.c │ │ │ ├── ui_servers2.c │ │ │ ├── ui_setup.c │ │ │ ├── ui_signup.c │ │ │ ├── ui_sound.c │ │ │ ├── ui_sparena.c │ │ │ ├── ui_specifyleague.c │ │ │ ├── ui_specifyserver.c │ │ │ ├── ui_splevel.c │ │ │ ├── ui_sppostgame.c │ │ │ ├── ui_spreset.c │ │ │ ├── ui_spskill.c │ │ │ ├── ui_startserver.c │ │ │ ├── ui_syscalls.c │ │ │ ├── ui_team.c │ │ │ ├── ui_teamorders.c │ │ │ └── ui_video.c │ │ └── ui │ │ │ └── menudef.h │ └── xreal │ │ ├── cgame │ │ ├── cg_animation.c │ │ ├── cg_consolecmds.c │ │ ├── cg_draw.c │ │ ├── cg_drawtools.c │ │ ├── cg_effects.c │ │ ├── cg_ents.c │ │ ├── cg_event.c │ │ ├── cg_info.c │ │ ├── cg_local.h │ │ ├── cg_localents.c │ │ ├── cg_lua.c │ │ ├── cg_main.c │ │ ├── cg_marks.c │ │ ├── cg_newdraw.c │ │ ├── cg_particles.c │ │ ├── cg_players.c │ │ ├── cg_playerstate.c │ │ ├── cg_predict.c │ │ ├── cg_scoreboard.c │ │ ├── cg_servercmds.c │ │ ├── cg_snapshot.c │ │ ├── cg_syscalls.c │ │ ├── cg_view.c │ │ ├── cg_weapons.c │ │ ├── cgame.def │ │ ├── lua_cgame.c │ │ ├── lua_particle.c │ │ └── premake5.lua │ │ ├── game │ │ ├── acebot │ │ │ ├── acebot.h │ │ │ ├── acebot_ai.c │ │ │ ├── acebot_cmds.c │ │ │ ├── acebot_items.c │ │ │ ├── acebot_movement.c │ │ │ ├── acebot_nodes.c │ │ │ └── acebot_spawn.c │ │ ├── bg_local.h │ │ ├── bg_misc.c │ │ ├── bg_pmove.c │ │ ├── bg_slidemove.c │ │ ├── g_active.c │ │ ├── g_arenas.c │ │ ├── g_bot.c │ │ ├── g_bullet.cpp │ │ ├── g_client.c │ │ ├── g_cmds.c │ │ ├── g_combat.c │ │ ├── g_items.c │ │ ├── g_local.h │ │ ├── g_lua.c │ │ ├── g_main.c │ │ ├── g_mem.c │ │ ├── g_misc.c │ │ ├── g_missile.c │ │ ├── g_mover.c │ │ ├── g_rankings.c │ │ ├── g_rankings.h │ │ ├── g_session.c │ │ ├── g_spawn.c │ │ ├── g_svcmds.c │ │ ├── g_syscalls.c │ │ ├── g_target.c │ │ ├── g_team.c │ │ ├── g_team.h │ │ ├── g_trigger.c │ │ ├── g_utils.c │ │ ├── g_weapon.c │ │ ├── game.def │ │ ├── lua_entity.c │ │ ├── lua_game.c │ │ ├── lua_qmath.c │ │ ├── lua_vector.c │ │ └── premake5.lua │ │ └── ui │ │ ├── menudef.h │ │ ├── premake5.lua │ │ ├── ui.def │ │ ├── ui_atoms.c │ │ ├── ui_gameinfo.c │ │ ├── ui_local.h │ │ ├── ui_main.c │ │ ├── ui_parse.c │ │ ├── ui_shared.c │ │ ├── ui_shared.h │ │ └── ui_syscalls.c ├── libs │ ├── bullet │ │ ├── Bullet-C-Api.h │ │ ├── BulletCollision │ │ │ ├── BroadphaseCollision │ │ │ │ ├── btAxisSweep3.cpp │ │ │ │ ├── btAxisSweep3.h │ │ │ │ ├── btBroadphaseInterface.h │ │ │ │ ├── btBroadphaseProxy.cpp │ │ │ │ ├── btBroadphaseProxy.h │ │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ │ ├── btCollisionAlgorithm.h │ │ │ │ ├── btDbvt.cpp │ │ │ │ ├── btDbvt.h │ │ │ │ ├── btDbvtBroadphase.cpp │ │ │ │ ├── btDbvtBroadphase.h │ │ │ │ ├── btDispatcher.cpp │ │ │ │ ├── btDispatcher.h │ │ │ │ ├── btMultiSapBroadphase.cpp │ │ │ │ ├── btMultiSapBroadphase.h │ │ │ │ ├── btOverlappingPairCache.cpp │ │ │ │ ├── btOverlappingPairCache.h │ │ │ │ ├── btOverlappingPairCallback.h │ │ │ │ ├── btQuantizedBvh.cpp │ │ │ │ ├── btQuantizedBvh.h │ │ │ │ ├── btSimpleBroadphase.cpp │ │ │ │ └── btSimpleBroadphase.h │ │ │ ├── CollisionDispatch │ │ │ │ ├── SphereTriangleDetector.cpp │ │ │ │ ├── SphereTriangleDetector.h │ │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ │ ├── btBoxBoxDetector.cpp │ │ │ │ ├── btBoxBoxDetector.h │ │ │ │ ├── btCollisionConfiguration.h │ │ │ │ ├── btCollisionCreateFunc.h │ │ │ │ ├── btCollisionDispatcher.cpp │ │ │ │ ├── btCollisionDispatcher.h │ │ │ │ ├── btCollisionObject.cpp │ │ │ │ ├── btCollisionObject.h │ │ │ │ ├── btCollisionWorld.cpp │ │ │ │ ├── btCollisionWorld.h │ │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ │ ├── btGhostObject.cpp │ │ │ │ ├── btGhostObject.h │ │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ │ ├── btInternalEdgeUtility.h │ │ │ │ ├── btManifoldResult.cpp │ │ │ │ ├── btManifoldResult.h │ │ │ │ ├── btSimulationIslandManager.cpp │ │ │ │ ├── btSimulationIslandManager.h │ │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ │ ├── btUnionFind.cpp │ │ │ │ └── btUnionFind.h │ │ │ ├── CollisionShapes │ │ │ │ ├── btBox2dShape.cpp │ │ │ │ ├── btBox2dShape.h │ │ │ │ ├── btBoxShape.cpp │ │ │ │ ├── btBoxShape.h │ │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ │ ├── btCapsuleShape.cpp │ │ │ │ ├── btCapsuleShape.h │ │ │ │ ├── btCollisionMargin.h │ │ │ │ ├── btCollisionShape.cpp │ │ │ │ ├── btCollisionShape.h │ │ │ │ ├── btCompoundShape.cpp │ │ │ │ ├── btCompoundShape.h │ │ │ │ ├── btConcaveShape.cpp │ │ │ │ ├── btConcaveShape.h │ │ │ │ ├── btConeShape.cpp │ │ │ │ ├── btConeShape.h │ │ │ │ ├── btConvex2dShape.cpp │ │ │ │ ├── btConvex2dShape.h │ │ │ │ ├── btConvexHullShape.cpp │ │ │ │ ├── btConvexHullShape.h │ │ │ │ ├── btConvexInternalShape.cpp │ │ │ │ ├── btConvexInternalShape.h │ │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ │ ├── btConvexPointCloudShape.h │ │ │ │ ├── btConvexPolyhedron.cpp │ │ │ │ ├── btConvexPolyhedron.h │ │ │ │ ├── btConvexShape.cpp │ │ │ │ ├── btConvexShape.h │ │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ │ ├── btCylinderShape.cpp │ │ │ │ ├── btCylinderShape.h │ │ │ │ ├── btEmptyShape.cpp │ │ │ │ ├── btEmptyShape.h │ │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ │ ├── btMaterial.h │ │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ │ ├── btMinkowskiSumShape.h │ │ │ │ ├── btMultiSphereShape.cpp │ │ │ │ ├── btMultiSphereShape.h │ │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ │ ├── btOptimizedBvh.cpp │ │ │ │ ├── btOptimizedBvh.h │ │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ │ ├── btPolyhedralConvexShape.h │ │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ │ ├── btShapeHull.cpp │ │ │ │ ├── btShapeHull.h │ │ │ │ ├── btSphereShape.cpp │ │ │ │ ├── btSphereShape.h │ │ │ │ ├── btStaticPlaneShape.cpp │ │ │ │ ├── btStaticPlaneShape.h │ │ │ │ ├── btStridingMeshInterface.cpp │ │ │ │ ├── btStridingMeshInterface.h │ │ │ │ ├── btTetrahedronShape.cpp │ │ │ │ ├── btTetrahedronShape.h │ │ │ │ ├── btTriangleBuffer.cpp │ │ │ │ ├── btTriangleBuffer.h │ │ │ │ ├── btTriangleCallback.cpp │ │ │ │ ├── btTriangleCallback.h │ │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ │ ├── btTriangleInfoMap.h │ │ │ │ ├── btTriangleMesh.cpp │ │ │ │ ├── btTriangleMesh.h │ │ │ │ ├── btTriangleMeshShape.cpp │ │ │ │ ├── btTriangleMeshShape.h │ │ │ │ ├── btTriangleShape.h │ │ │ │ ├── btUniformScalingShape.cpp │ │ │ │ └── btUniformScalingShape.h │ │ │ ├── Gimpact │ │ │ │ ├── btBoxCollision.h │ │ │ │ ├── btClipPolygon.h │ │ │ │ ├── btContactProcessing.cpp │ │ │ │ ├── btContactProcessing.h │ │ │ │ ├── btGImpactBvh.cpp │ │ │ │ ├── btGImpactBvh.h │ │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ │ ├── btGImpactMassUtil.h │ │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ │ ├── btGImpactShape.cpp │ │ │ │ ├── btGImpactShape.h │ │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ │ ├── btGenericPoolAllocator.h │ │ │ │ ├── btGeometryOperations.h │ │ │ │ ├── btQuantization.h │ │ │ │ ├── btTriangleShapeEx.cpp │ │ │ │ ├── btTriangleShapeEx.h │ │ │ │ ├── gim_array.h │ │ │ │ ├── gim_basic_geometry_operations.h │ │ │ │ ├── gim_bitset.h │ │ │ │ ├── gim_box_collision.h │ │ │ │ ├── gim_box_set.cpp │ │ │ │ ├── gim_box_set.h │ │ │ │ ├── gim_clip_polygon.h │ │ │ │ ├── gim_contact.cpp │ │ │ │ ├── gim_contact.h │ │ │ │ ├── gim_geom_types.h │ │ │ │ ├── gim_geometry.h │ │ │ │ ├── gim_hash_table.h │ │ │ │ ├── gim_linear_math.h │ │ │ │ ├── gim_math.h │ │ │ │ ├── gim_memory.cpp │ │ │ │ ├── gim_memory.h │ │ │ │ ├── gim_radixsort.h │ │ │ │ ├── gim_tri_collision.cpp │ │ │ │ └── gim_tri_collision.h │ │ │ ├── NarrowPhaseCollision │ │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ │ ├── btContinuousConvexCollision.h │ │ │ │ ├── btConvexCast.cpp │ │ │ │ ├── btConvexCast.h │ │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ │ ├── btGjkConvexCast.cpp │ │ │ │ ├── btGjkConvexCast.h │ │ │ │ ├── btGjkEpa2.cpp │ │ │ │ ├── btGjkEpa2.h │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ │ ├── btGjkPairDetector.cpp │ │ │ │ ├── btGjkPairDetector.h │ │ │ │ ├── btManifoldPoint.h │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ │ ├── btPersistentManifold.cpp │ │ │ │ ├── btPersistentManifold.h │ │ │ │ ├── btPointCollector.h │ │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ │ ├── btPolyhedralContactClipping.h │ │ │ │ ├── btRaycastCallback.cpp │ │ │ │ ├── btRaycastCallback.h │ │ │ │ ├── btSimplexSolverInterface.h │ │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ │ ├── btSubSimplexConvexCast.h │ │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ │ └── btVoronoiSimplexSolver.h │ │ │ └── premake4.lua │ │ ├── BulletDynamics │ │ │ ├── Character │ │ │ │ ├── btCharacterControllerInterface.h │ │ │ │ ├── btKinematicCharacterController.cpp │ │ │ │ └── btKinematicCharacterController.h │ │ │ ├── ConstraintSolver │ │ │ │ ├── btConeTwistConstraint.cpp │ │ │ │ ├── btConeTwistConstraint.h │ │ │ │ ├── btConstraintSolver.h │ │ │ │ ├── btContactConstraint.cpp │ │ │ │ ├── btContactConstraint.h │ │ │ │ ├── btContactSolverInfo.h │ │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ │ ├── btGeneric6DofConstraint.h │ │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ │ ├── btHinge2Constraint.cpp │ │ │ │ ├── btHinge2Constraint.h │ │ │ │ ├── btHingeConstraint.cpp │ │ │ │ ├── btHingeConstraint.h │ │ │ │ ├── btJacobianEntry.h │ │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ │ ├── btPoint2PointConstraint.h │ │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ │ ├── btSliderConstraint.cpp │ │ │ │ ├── btSliderConstraint.h │ │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ │ ├── btSolve2LinearConstraint.h │ │ │ │ ├── btSolverBody.h │ │ │ │ ├── btSolverConstraint.h │ │ │ │ ├── btTypedConstraint.cpp │ │ │ │ ├── btTypedConstraint.h │ │ │ │ ├── btUniversalConstraint.cpp │ │ │ │ └── btUniversalConstraint.h │ │ │ ├── Dynamics │ │ │ │ ├── Bullet-C-API.cpp │ │ │ │ ├── btActionInterface.h │ │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ │ ├── btDynamicsWorld.h │ │ │ │ ├── btRigidBody.cpp │ │ │ │ ├── btRigidBody.h │ │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ │ └── btSimpleDynamicsWorld.h │ │ │ ├── Vehicle │ │ │ │ ├── btRaycastVehicle.cpp │ │ │ │ ├── btRaycastVehicle.h │ │ │ │ ├── btVehicleRaycaster.h │ │ │ │ ├── btWheelInfo.cpp │ │ │ │ └── btWheelInfo.h │ │ │ └── premake4.lua │ │ ├── BulletMultiThreaded │ │ │ ├── GpuSoftBodySolvers │ │ │ │ ├── CPU │ │ │ │ │ ├── btSoftBodySolverData.h │ │ │ │ │ ├── btSoftBodySolver_CPU.cpp │ │ │ │ │ └── btSoftBodySolver_CPU.h │ │ │ │ ├── DX11 │ │ │ │ │ ├── HLSL │ │ │ │ │ │ ├── ApplyForces.hlsl │ │ │ │ │ │ ├── ComputeBounds.hlsl │ │ │ │ │ │ ├── Integrate.hlsl │ │ │ │ │ │ ├── OutputToVertexArray.hlsl │ │ │ │ │ │ ├── PrepareLinks.hlsl │ │ │ │ │ │ ├── SolvePositions.hlsl │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.hlsl │ │ │ │ │ │ ├── UpdateConstants.hlsl │ │ │ │ │ │ ├── UpdateNodes.hlsl │ │ │ │ │ │ ├── UpdateNormals.hlsl │ │ │ │ │ │ ├── UpdatePositions.hlsl │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.hlsl │ │ │ │ │ │ ├── VSolveLinks.hlsl │ │ │ │ │ │ ├── solveCollisionsAndUpdateVelocities.hlsl │ │ │ │ │ │ └── solveCollisionsAndUpdateVelocitiesSIMDBatched.hlsl │ │ │ │ │ ├── btSoftBodySolverBuffer_DX11.h │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11.h │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11SIMDAware.h │ │ │ │ │ ├── btSoftBodySolverTriangleData_DX11.h │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_DX11.h │ │ │ │ │ ├── btSoftBodySolverVertexData_DX11.h │ │ │ │ │ ├── btSoftBodySolver_DX11.cpp │ │ │ │ │ ├── btSoftBodySolver_DX11.h │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.cpp │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.h │ │ │ │ │ └── premake4.lua │ │ │ │ └── OpenCL │ │ │ │ │ ├── AMD │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── Apple │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── Intel │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── MiniCL │ │ │ │ │ └── MiniCLTaskWrap.cpp │ │ │ │ │ ├── NVidia │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── OpenCLC │ │ │ │ │ ├── ApplyForces.cl │ │ │ │ │ ├── ComputeBounds.cl │ │ │ │ │ ├── Integrate.cl │ │ │ │ │ ├── OutputToVertexArray.cl │ │ │ │ │ ├── PrepareLinks.cl │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl │ │ │ │ │ ├── SolvePositions.cl │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl │ │ │ │ │ ├── UpdateConstants.cl │ │ │ │ │ ├── UpdateNodes.cl │ │ │ │ │ ├── UpdateNormals.cl │ │ │ │ │ ├── UpdatePositions.cl │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl │ │ │ │ │ └── VSolveLinks.cl │ │ │ │ │ ├── OpenCLC10 │ │ │ │ │ ├── ApplyForces.cl │ │ │ │ │ ├── ComputeBounds.cl │ │ │ │ │ ├── Integrate.cl │ │ │ │ │ ├── OutputToVertexArray.cl │ │ │ │ │ ├── PrepareLinks.cl │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl │ │ │ │ │ ├── SolvePositions.cl │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl │ │ │ │ │ ├── UpdateConstants.cl │ │ │ │ │ ├── UpdateNodes.cl │ │ │ │ │ ├── UpdateNormals.cl │ │ │ │ │ ├── UpdatePositions.cl │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl │ │ │ │ │ └── VSolveLinks.cl │ │ │ │ │ ├── btSoftBodySolverBuffer_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCLSIMDAware.h │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.cpp │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.h │ │ │ │ │ ├── btSoftBodySolverTriangleData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_OpenGL.h │ │ │ │ │ ├── btSoftBodySolverVertexData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolver_OpenCL.cpp │ │ │ │ │ ├── btSoftBodySolver_OpenCL.h │ │ │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.cpp │ │ │ │ │ └── btSoftBodySolver_OpenCLSIMDAware.h │ │ │ ├── HeapManager.h │ │ │ ├── PlatformDefinitions.h │ │ │ ├── PosixThreadSupport.cpp │ │ │ ├── PosixThreadSupport.h │ │ │ ├── PpuAddressSpace.h │ │ │ ├── SequentialThreadSupport.cpp │ │ │ ├── SequentialThreadSupport.h │ │ │ ├── SpuCollisionObjectWrapper.cpp │ │ │ ├── SpuCollisionObjectWrapper.h │ │ │ ├── SpuCollisionTaskProcess.cpp │ │ │ ├── SpuCollisionTaskProcess.h │ │ │ ├── SpuContactManifoldCollisionAlgorithm.cpp │ │ │ ├── SpuContactManifoldCollisionAlgorithm.h │ │ │ ├── SpuDoubleBuffer.h │ │ │ ├── SpuFakeDma.cpp │ │ │ ├── SpuFakeDma.h │ │ │ ├── SpuGatheringCollisionDispatcher.cpp │ │ │ ├── SpuGatheringCollisionDispatcher.h │ │ │ ├── SpuLibspe2Support.cpp │ │ │ ├── SpuLibspe2Support.h │ │ │ ├── SpuNarrowPhaseCollisionTask │ │ │ │ ├── Box.h │ │ │ │ ├── SpuCollisionShapes.cpp │ │ │ │ ├── SpuCollisionShapes.h │ │ │ │ ├── SpuContactResult.cpp │ │ │ │ ├── SpuContactResult.h │ │ │ │ ├── SpuConvexPenetrationDepthSolver.h │ │ │ │ ├── SpuGatheringCollisionTask.cpp │ │ │ │ ├── SpuGatheringCollisionTask.h │ │ │ │ ├── SpuLocalSupport.h │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.cpp │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.h │ │ │ │ ├── SpuPreferredPenetrationDirections.h │ │ │ │ ├── boxBoxDistance.cpp │ │ │ │ ├── boxBoxDistance.h │ │ │ │ └── readme.txt │ │ │ ├── SpuSampleTask │ │ │ │ ├── SpuSampleTask.cpp │ │ │ │ ├── SpuSampleTask.h │ │ │ │ └── readme.txt │ │ │ ├── SpuSampleTaskProcess.cpp │ │ │ ├── SpuSampleTaskProcess.h │ │ │ ├── SpuSync.h │ │ │ ├── TrbDynBody.h │ │ │ ├── TrbStateVec.h │ │ │ ├── Win32ThreadSupport.cpp │ │ │ ├── Win32ThreadSupport.h │ │ │ ├── btGpu3DGridBroadphase.cpp │ │ │ ├── btGpu3DGridBroadphase.h │ │ │ ├── btGpu3DGridBroadphaseSharedCode.h │ │ │ ├── btGpu3DGridBroadphaseSharedDefs.h │ │ │ ├── btGpu3DGridBroadphaseSharedTypes.h │ │ │ ├── btGpuDefines.h │ │ │ ├── btGpuUtilsSharedCode.h │ │ │ ├── btGpuUtilsSharedDefs.h │ │ │ ├── btParallelConstraintSolver.cpp │ │ │ ├── btParallelConstraintSolver.h │ │ │ ├── btThreadSupportInterface.cpp │ │ │ ├── btThreadSupportInterface.h │ │ │ └── vectormath2bullet.h │ │ ├── BulletSoftBody │ │ │ ├── btDefaultSoftBodySolver.cpp │ │ │ ├── btDefaultSoftBodySolver.h │ │ │ ├── btSoftBody.cpp │ │ │ ├── btSoftBody.h │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ │ ├── btSoftBodyData.h │ │ │ ├── btSoftBodyHelpers.cpp │ │ │ ├── btSoftBodyHelpers.h │ │ │ ├── btSoftBodyInternals.h │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ │ ├── btSoftBodySolverVertexBuffer.h │ │ │ ├── btSoftBodySolvers.h │ │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ │ ├── btSoftRigidDynamicsWorld.h │ │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ │ ├── btSparseSDF.h │ │ │ └── premake4.lua │ │ ├── LinearMath │ │ │ ├── btAabbUtil2.h │ │ │ ├── btAlignedAllocator.cpp │ │ │ ├── btAlignedAllocator.h │ │ │ ├── btAlignedObjectArray.h │ │ │ ├── btConvexHull.cpp │ │ │ ├── btConvexHull.h │ │ │ ├── btConvexHullComputer.cpp │ │ │ ├── btConvexHullComputer.h │ │ │ ├── btDefaultMotionState.h │ │ │ ├── btGeometryUtil.cpp │ │ │ ├── btGeometryUtil.h │ │ │ ├── btGrahamScan2dConvexHull.h │ │ │ ├── btHashMap.h │ │ │ ├── btIDebugDraw.h │ │ │ ├── btList.h │ │ │ ├── btMatrix3x3.h │ │ │ ├── btMinMax.h │ │ │ ├── btMotionState.h │ │ │ ├── btPoolAllocator.h │ │ │ ├── btQuadWord.h │ │ │ ├── btQuaternion.h │ │ │ ├── btQuickprof.cpp │ │ │ ├── btQuickprof.h │ │ │ ├── btRandom.h │ │ │ ├── btScalar.h │ │ │ ├── btSerializer.cpp │ │ │ ├── btSerializer.h │ │ │ ├── btStackAlloc.h │ │ │ ├── btTransform.h │ │ │ ├── btTransformUtil.h │ │ │ ├── btVector3.h │ │ │ └── premake4.lua │ │ ├── MiniCL │ │ │ ├── CMakeLists.txt │ │ │ ├── MiniCL.cpp │ │ │ ├── MiniCLTask │ │ │ │ ├── MiniCLTask.cpp │ │ │ │ └── MiniCLTask.h │ │ │ ├── MiniCLTaskScheduler.cpp │ │ │ ├── MiniCLTaskScheduler.h │ │ │ ├── cl.h │ │ │ ├── cl_MiniCL_Defs.h │ │ │ ├── cl_gl.h │ │ │ └── cl_platform.h │ │ ├── btBulletCollisionCommon.h │ │ ├── btBulletDynamicsCommon.h │ │ └── vectormath │ │ │ ├── scalar │ │ │ ├── boolInVec.h │ │ │ ├── floatInVec.h │ │ │ ├── mat_aos.h │ │ │ ├── quat_aos.h │ │ │ ├── vec_aos.h │ │ │ └── vectormath_aos.h │ │ │ ├── sse │ │ │ ├── boolInVec.h │ │ │ ├── floatInVec.h │ │ │ ├── mat_aos.h │ │ │ ├── quat_aos.h │ │ │ ├── vec_aos.h │ │ │ ├── vecidx_aos.h │ │ │ └── vectormath_aos.h │ │ │ └── vmInclude.h │ ├── curl │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── README │ │ ├── RELEASE-NOTES │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── curl │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── curl.h │ │ │ │ ├── curlver.h │ │ │ │ ├── easy.h │ │ │ │ ├── mprintf.h │ │ │ │ ├── multi.h │ │ │ │ ├── stdcheaders.h │ │ │ │ └── types.h │ │ └── lib │ │ │ ├── libcurl.dll │ │ │ ├── libcurl.exp │ │ │ └── libcurl.lib │ ├── freetype │ │ ├── ChangeLog │ │ ├── Jamfile │ │ ├── Jamrules │ │ ├── Makefile │ │ ├── README │ │ ├── autogen.sh │ │ ├── builds │ │ │ ├── amiga │ │ │ │ ├── README │ │ │ │ ├── include │ │ │ │ │ └── freetype │ │ │ │ │ │ └── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ └── ftmodule.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.os4 │ │ │ │ ├── smakefile │ │ │ │ └── src │ │ │ │ │ └── base │ │ │ │ │ ├── ftdebug.c │ │ │ │ │ └── ftsystem.c │ │ │ ├── ansi │ │ │ │ ├── ansi-def.mk │ │ │ │ └── ansi.mk │ │ │ ├── atari │ │ │ │ ├── ATARI.H │ │ │ │ ├── FNames.SIC │ │ │ │ ├── FREETYPE.PRJ │ │ │ │ └── README.TXT │ │ │ ├── beos │ │ │ │ ├── beos-def.mk │ │ │ │ ├── beos.mk │ │ │ │ └── detect.mk │ │ │ ├── compiler │ │ │ │ ├── ansi-cc.mk │ │ │ │ ├── bcc-dev.mk │ │ │ │ ├── bcc.mk │ │ │ │ ├── emx.mk │ │ │ │ ├── gcc-dev.mk │ │ │ │ ├── gcc.mk │ │ │ │ ├── intelc.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── visualage.mk │ │ │ │ ├── visualc.mk │ │ │ │ ├── watcom.mk │ │ │ │ └── win-lcc.mk │ │ │ ├── detect.mk │ │ │ ├── dos │ │ │ │ ├── detect.mk │ │ │ │ ├── dos-def.mk │ │ │ │ ├── dos-emx.mk │ │ │ │ ├── dos-gcc.mk │ │ │ │ └── dos-wat.mk │ │ │ ├── exports.mk │ │ │ ├── freetype.mk │ │ │ ├── link_dos.mk │ │ │ ├── link_std.mk │ │ │ ├── mac │ │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ │ ├── README │ │ │ │ ├── ascii2mpw.py │ │ │ │ ├── ftlib.prj.xml │ │ │ │ └── ftmac.c │ │ │ ├── modules.mk │ │ │ ├── newline │ │ │ ├── os2 │ │ │ │ ├── detect.mk │ │ │ │ ├── os2-def.mk │ │ │ │ ├── os2-dev.mk │ │ │ │ └── os2-gcc.mk │ │ │ ├── toplevel.mk │ │ │ ├── unix │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── configure.raw │ │ │ │ ├── detect.mk │ │ │ │ ├── freetype-config.in │ │ │ │ ├── freetype2.in │ │ │ │ ├── freetype2.m4 │ │ │ │ ├── ft-munmap.m4 │ │ │ │ ├── ft2unix.h │ │ │ │ ├── ftconfig.in │ │ │ │ ├── ftsystem.c │ │ │ │ ├── install-sh │ │ │ │ ├── install.mk │ │ │ │ ├── ltmain.sh │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── unix-cc.in │ │ │ │ ├── unix-def.in │ │ │ │ ├── unix-dev.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── unix.mk │ │ │ │ └── unixddef.mk │ │ │ ├── vms │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftsystem.c │ │ │ └── win32 │ │ │ │ ├── detect.mk │ │ │ │ ├── ftdebug.c │ │ │ │ ├── visualc │ │ │ │ ├── freetype.sln │ │ │ │ └── freetype.vcproj │ │ │ │ ├── visualce │ │ │ │ ├── freetype.dsp │ │ │ │ ├── freetype.dsw │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ │ ├── w32-bcc.mk │ │ │ │ ├── w32-bccd.mk │ │ │ │ ├── w32-dev.mk │ │ │ │ ├── w32-gcc.mk │ │ │ │ ├── w32-icc.mk │ │ │ │ ├── w32-intl.mk │ │ │ │ ├── w32-lcc.mk │ │ │ │ ├── w32-mingw32.mk │ │ │ │ ├── w32-vcc.mk │ │ │ │ ├── w32-wat.mk │ │ │ │ └── win32-def.mk │ │ ├── configure │ │ ├── devel │ │ │ ├── ft2build.h │ │ │ └── ftoption.h │ │ ├── docs │ │ │ ├── CHANGES │ │ │ ├── CUSTOMIZE │ │ │ ├── DEBUG │ │ │ ├── FTL.TXT │ │ │ ├── GPL.TXT │ │ │ ├── INSTALL │ │ │ ├── INSTALL.ANY │ │ │ ├── INSTALL.CROSS │ │ │ ├── INSTALL.GNU │ │ │ ├── INSTALL.MAC │ │ │ ├── INSTALL.UNIX │ │ │ ├── INSTALL.VMS │ │ │ ├── LICENSE.TXT │ │ │ ├── MAKEPP │ │ │ ├── PATENTS │ │ │ ├── PROBLEMS │ │ │ ├── TODO │ │ │ ├── TRUETYPE │ │ │ ├── UPGRADE.UNIX │ │ │ ├── formats.txt │ │ │ ├── raster.txt │ │ │ ├── reference │ │ │ │ ├── README │ │ │ │ ├── ft2-base_interface.html │ │ │ │ ├── ft2-basic_types.html │ │ │ │ ├── ft2-bdf_fonts.html │ │ │ │ ├── ft2-bitmap_handling.html │ │ │ │ ├── ft2-cache_subsystem.html │ │ │ │ ├── ft2-computations.html │ │ │ │ ├── ft2-font_formats.html │ │ │ │ ├── ft2-gasp_table.html │ │ │ │ ├── ft2-glyph_management.html │ │ │ │ ├── ft2-glyph_stroker.html │ │ │ │ ├── ft2-gx_validation.html │ │ │ │ ├── ft2-gzip.html │ │ │ │ ├── ft2-header_file_macros.html │ │ │ │ ├── ft2-incremental.html │ │ │ │ ├── ft2-index.html │ │ │ │ ├── ft2-lcd_filtering.html │ │ │ │ ├── ft2-list_processing.html │ │ │ │ ├── ft2-lzw.html │ │ │ │ ├── ft2-mac_specific.html │ │ │ │ ├── ft2-module_management.html │ │ │ │ ├── ft2-multiple_masters.html │ │ │ │ ├── ft2-ot_validation.html │ │ │ │ ├── ft2-outline_processing.html │ │ │ │ ├── ft2-pfr_fonts.html │ │ │ │ ├── ft2-raster.html │ │ │ │ ├── ft2-sfnt_names.html │ │ │ │ ├── ft2-sizes_management.html │ │ │ │ ├── ft2-system_interface.html │ │ │ │ ├── ft2-toc.html │ │ │ │ ├── ft2-truetype_engine.html │ │ │ │ ├── ft2-truetype_tables.html │ │ │ │ ├── ft2-type1_tables.html │ │ │ │ ├── ft2-user_allocation.html │ │ │ │ ├── ft2-version.html │ │ │ │ └── ft2-winfnt_fonts.html │ │ │ └── release │ │ ├── include │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.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 │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── svbdf.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 │ │ │ └── ft2build.h │ │ ├── modules.cfg │ │ ├── objs │ │ │ └── README │ │ ├── src │ │ │ ├── Jamfile │ │ │ ├── autofit │ │ │ │ ├── Jamfile │ │ │ │ ├── afangles.c │ │ │ │ ├── afangles.h │ │ │ │ ├── afcjk.c │ │ │ │ ├── afcjk.h │ │ │ │ ├── afdummy.c │ │ │ │ ├── afdummy.h │ │ │ │ ├── aferrors.h │ │ │ │ ├── afglobal.c │ │ │ │ ├── afglobal.h │ │ │ │ ├── afhints.c │ │ │ │ ├── afhints.h │ │ │ │ ├── afindic.c │ │ │ │ ├── afindic.h │ │ │ │ ├── aflatin.c │ │ │ │ ├── aflatin.h │ │ │ │ ├── aflatin2.c │ │ │ │ ├── aflatin2.h │ │ │ │ ├── afloader.c │ │ │ │ ├── afloader.h │ │ │ │ ├── afmodule.c │ │ │ │ ├── afmodule.h │ │ │ │ ├── aftypes.h │ │ │ │ ├── afwarp.c │ │ │ │ ├── afwarp.h │ │ │ │ ├── autofit.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── base │ │ │ │ ├── Jamfile │ │ │ │ ├── ftapi.c │ │ │ │ ├── ftbase.c │ │ │ │ ├── ftbbox.c │ │ │ │ ├── ftbdf.c │ │ │ │ ├── ftbitmap.c │ │ │ │ ├── ftcalc.c │ │ │ │ ├── ftdbgmem.c │ │ │ │ ├── ftdebug.c │ │ │ │ ├── ftgasp.c │ │ │ │ ├── ftgloadr.c │ │ │ │ ├── ftglyph.c │ │ │ │ ├── ftgxval.c │ │ │ │ ├── ftinit.c │ │ │ │ ├── ftlcdfil.c │ │ │ │ ├── ftmac.c │ │ │ │ ├── ftmm.c │ │ │ │ ├── ftnames.c │ │ │ │ ├── ftobjs.c │ │ │ │ ├── ftotval.c │ │ │ │ ├── ftoutln.c │ │ │ │ ├── ftpatent.c │ │ │ │ ├── ftpfr.c │ │ │ │ ├── ftrfork.c │ │ │ │ ├── ftstream.c │ │ │ │ ├── ftstroke.c │ │ │ │ ├── ftsynth.c │ │ │ │ ├── ftsystem.c │ │ │ │ ├── fttrigon.c │ │ │ │ ├── fttype1.c │ │ │ │ ├── ftutil.c │ │ │ │ ├── ftwinfnt.c │ │ │ │ ├── ftxf86.c │ │ │ │ └── rules.mk │ │ │ ├── bdf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── bdf.c │ │ │ │ ├── bdf.h │ │ │ │ ├── bdfdrivr.c │ │ │ │ ├── bdfdrivr.h │ │ │ │ ├── bdferror.h │ │ │ │ ├── bdflib.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── cache │ │ │ │ ├── Jamfile │ │ │ │ ├── ftcache.c │ │ │ │ ├── ftcbasic.c │ │ │ │ ├── ftccache.c │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccback.h │ │ │ │ ├── ftccmap.c │ │ │ │ ├── ftcerror.h │ │ │ │ ├── ftcglyph.c │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.c │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.c │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.c │ │ │ │ ├── ftcmru.h │ │ │ │ ├── ftcsbits.c │ │ │ │ ├── ftcsbits.h │ │ │ │ └── rules.mk │ │ │ ├── cff │ │ │ │ ├── Jamfile │ │ │ │ ├── cff.c │ │ │ │ ├── cffcmap.c │ │ │ │ ├── cffcmap.h │ │ │ │ ├── cffdrivr.c │ │ │ │ ├── cffdrivr.h │ │ │ │ ├── cfferrs.h │ │ │ │ ├── cffgload.c │ │ │ │ ├── cffgload.h │ │ │ │ ├── cffload.c │ │ │ │ ├── cffload.h │ │ │ │ ├── cffobjs.c │ │ │ │ ├── cffobjs.h │ │ │ │ ├── cffparse.c │ │ │ │ ├── cffparse.h │ │ │ │ ├── cfftoken.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── cid │ │ │ │ ├── Jamfile │ │ │ │ ├── ciderrs.h │ │ │ │ ├── cidgload.c │ │ │ │ ├── cidgload.h │ │ │ │ ├── cidload.c │ │ │ │ ├── cidload.h │ │ │ │ ├── cidobjs.c │ │ │ │ ├── cidobjs.h │ │ │ │ ├── cidparse.c │ │ │ │ ├── cidparse.h │ │ │ │ ├── cidriver.c │ │ │ │ ├── cidriver.h │ │ │ │ ├── cidtoken.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── type1cid.c │ │ │ ├── gxvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── gxvalid.c │ │ │ │ ├── gxvalid.h │ │ │ │ ├── gxvbsln.c │ │ │ │ ├── gxvcommn.c │ │ │ │ ├── gxvcommn.h │ │ │ │ ├── gxverror.h │ │ │ │ ├── gxvfeat.c │ │ │ │ ├── gxvfeat.h │ │ │ │ ├── gxvfgen.c │ │ │ │ ├── gxvjust.c │ │ │ │ ├── gxvkern.c │ │ │ │ ├── gxvlcar.c │ │ │ │ ├── gxvmod.c │ │ │ │ ├── gxvmod.h │ │ │ │ ├── gxvmort.c │ │ │ │ ├── gxvmort.h │ │ │ │ ├── gxvmort0.c │ │ │ │ ├── gxvmort1.c │ │ │ │ ├── gxvmort2.c │ │ │ │ ├── gxvmort4.c │ │ │ │ ├── gxvmort5.c │ │ │ │ ├── gxvmorx.c │ │ │ │ ├── gxvmorx.h │ │ │ │ ├── gxvmorx0.c │ │ │ │ ├── gxvmorx1.c │ │ │ │ ├── gxvmorx2.c │ │ │ │ ├── gxvmorx4.c │ │ │ │ ├── gxvmorx5.c │ │ │ │ ├── gxvopbd.c │ │ │ │ ├── gxvprop.c │ │ │ │ ├── gxvtrak.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── gzip │ │ │ │ ├── Jamfile │ │ │ │ ├── adler32.c │ │ │ │ ├── ftgzip.c │ │ │ │ ├── infblock.c │ │ │ │ ├── infblock.h │ │ │ │ ├── infcodes.c │ │ │ │ ├── infcodes.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── infutil.c │ │ │ │ ├── infutil.h │ │ │ │ ├── rules.mk │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ ├── lzw │ │ │ │ ├── Jamfile │ │ │ │ ├── ftlzw.c │ │ │ │ ├── ftzopen.c │ │ │ │ ├── ftzopen.h │ │ │ │ └── rules.mk │ │ │ ├── otvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── otvalid.c │ │ │ │ ├── otvalid.h │ │ │ │ ├── otvbase.c │ │ │ │ ├── otvcommn.c │ │ │ │ ├── otvcommn.h │ │ │ │ ├── otverror.h │ │ │ │ ├── otvgdef.c │ │ │ │ ├── otvgpos.c │ │ │ │ ├── otvgpos.h │ │ │ │ ├── otvgsub.c │ │ │ │ ├── otvjstf.c │ │ │ │ ├── otvmod.c │ │ │ │ ├── otvmod.h │ │ │ │ └── rules.mk │ │ │ ├── pcf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── module.mk │ │ │ │ ├── pcf.c │ │ │ │ ├── pcf.h │ │ │ │ ├── pcfdrivr.c │ │ │ │ ├── pcfdrivr.h │ │ │ │ ├── pcferror.h │ │ │ │ ├── pcfread.c │ │ │ │ ├── pcfread.h │ │ │ │ ├── pcfutil.c │ │ │ │ ├── pcfutil.h │ │ │ │ └── rules.mk │ │ │ ├── pfr │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pfr.c │ │ │ │ ├── pfrcmap.c │ │ │ │ ├── pfrcmap.h │ │ │ │ ├── pfrdrivr.c │ │ │ │ ├── pfrdrivr.h │ │ │ │ ├── pfrerror.h │ │ │ │ ├── pfrgload.c │ │ │ │ ├── pfrgload.h │ │ │ │ ├── pfrload.c │ │ │ │ ├── pfrload.h │ │ │ │ ├── pfrobjs.c │ │ │ │ ├── pfrobjs.h │ │ │ │ ├── pfrsbit.c │ │ │ │ ├── pfrsbit.h │ │ │ │ ├── pfrtypes.h │ │ │ │ └── rules.mk │ │ │ ├── psaux │ │ │ │ ├── Jamfile │ │ │ │ ├── afmparse.c │ │ │ │ ├── afmparse.h │ │ │ │ ├── module.mk │ │ │ │ ├── psaux.c │ │ │ │ ├── psauxerr.h │ │ │ │ ├── psauxmod.c │ │ │ │ ├── psauxmod.h │ │ │ │ ├── psconv.c │ │ │ │ ├── psconv.h │ │ │ │ ├── psobjs.c │ │ │ │ ├── psobjs.h │ │ │ │ ├── rules.mk │ │ │ │ ├── t1cmap.c │ │ │ │ ├── t1cmap.h │ │ │ │ ├── t1decode.c │ │ │ │ └── t1decode.h │ │ │ ├── pshinter │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pshalgo.c │ │ │ │ ├── pshalgo.h │ │ │ │ ├── pshglob.c │ │ │ │ ├── pshglob.h │ │ │ │ ├── pshinter.c │ │ │ │ ├── pshmod.c │ │ │ │ ├── pshmod.h │ │ │ │ ├── pshnterr.h │ │ │ │ ├── pshrec.c │ │ │ │ ├── pshrec.h │ │ │ │ └── rules.mk │ │ │ ├── psnames │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── psmodule.c │ │ │ │ ├── psmodule.h │ │ │ │ ├── psnamerr.h │ │ │ │ ├── psnames.c │ │ │ │ ├── pstables.h │ │ │ │ └── rules.mk │ │ │ ├── raster │ │ │ │ ├── Jamfile │ │ │ │ ├── ftmisc.h │ │ │ │ ├── ftraster.c │ │ │ │ ├── ftraster.h │ │ │ │ ├── ftrend1.c │ │ │ │ ├── ftrend1.h │ │ │ │ ├── module.mk │ │ │ │ ├── raster.c │ │ │ │ ├── rasterrs.h │ │ │ │ └── rules.mk │ │ │ ├── sfnt │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── sfdriver.c │ │ │ │ ├── sfdriver.h │ │ │ │ ├── sferrors.h │ │ │ │ ├── sfnt.c │ │ │ │ ├── sfobjs.c │ │ │ │ ├── sfobjs.h │ │ │ │ ├── ttbdf.c │ │ │ │ ├── ttbdf.h │ │ │ │ ├── ttcmap.c │ │ │ │ ├── ttcmap.h │ │ │ │ ├── ttkern.c │ │ │ │ ├── ttkern.h │ │ │ │ ├── ttload.c │ │ │ │ ├── ttload.h │ │ │ │ ├── ttmtx.c │ │ │ │ ├── ttmtx.h │ │ │ │ ├── ttpost.c │ │ │ │ ├── ttpost.h │ │ │ │ ├── ttsbit.c │ │ │ │ ├── ttsbit.h │ │ │ │ └── ttsbit0.c │ │ │ ├── smooth │ │ │ │ ├── Jamfile │ │ │ │ ├── ftgrays.c │ │ │ │ ├── ftgrays.h │ │ │ │ ├── ftsmerrs.h │ │ │ │ ├── ftsmooth.c │ │ │ │ ├── ftsmooth.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── smooth.c │ │ │ ├── tools │ │ │ │ ├── Jamfile │ │ │ │ ├── apinames.c │ │ │ │ ├── cordic.py │ │ │ │ ├── docmaker │ │ │ │ │ ├── content.py │ │ │ │ │ ├── docbeauty.py │ │ │ │ │ ├── docmaker.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── sources.py │ │ │ │ │ ├── tohtml.py │ │ │ │ │ └── utils.py │ │ │ │ ├── ftrandom │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── ftrandom.c │ │ │ │ ├── glnames.py │ │ │ │ ├── test_afm.c │ │ │ │ ├── test_bbox.c │ │ │ │ └── test_trig.c │ │ │ ├── truetype │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── truetype.c │ │ │ │ ├── ttdriver.c │ │ │ │ ├── ttdriver.h │ │ │ │ ├── tterrors.h │ │ │ │ ├── ttgload.c │ │ │ │ ├── ttgload.h │ │ │ │ ├── ttgxvar.c │ │ │ │ ├── ttgxvar.h │ │ │ │ ├── ttinterp.c │ │ │ │ ├── ttinterp.h │ │ │ │ ├── ttobjs.c │ │ │ │ ├── ttobjs.h │ │ │ │ ├── ttpload.c │ │ │ │ └── ttpload.h │ │ │ ├── type1 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t1afm.c │ │ │ │ ├── t1afm.h │ │ │ │ ├── t1driver.c │ │ │ │ ├── t1driver.h │ │ │ │ ├── t1errors.h │ │ │ │ ├── t1gload.c │ │ │ │ ├── t1gload.h │ │ │ │ ├── t1load.c │ │ │ │ ├── t1load.h │ │ │ │ ├── t1objs.c │ │ │ │ ├── t1objs.h │ │ │ │ ├── t1parse.c │ │ │ │ ├── t1parse.h │ │ │ │ ├── t1tokens.h │ │ │ │ └── type1.c │ │ │ ├── type42 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t42drivr.c │ │ │ │ ├── t42drivr.h │ │ │ │ ├── t42error.h │ │ │ │ ├── t42objs.c │ │ │ │ ├── t42objs.h │ │ │ │ ├── t42parse.c │ │ │ │ ├── t42parse.h │ │ │ │ ├── t42types.h │ │ │ │ └── type42.c │ │ │ └── winfonts │ │ │ │ ├── Jamfile │ │ │ │ ├── fnterrs.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── winfnt.c │ │ │ │ └── winfnt.h │ │ ├── version.sed │ │ └── vms_make.com │ ├── gl3w │ │ ├── README.rst │ │ ├── SConstruct │ │ ├── gl3w_gen.py │ │ ├── include │ │ │ └── GL3 │ │ │ │ ├── gl3.h │ │ │ │ └── gl3w.h │ │ └── src │ │ │ └── gl3w.c │ ├── glib │ │ ├── include │ │ │ └── glib-2.0 │ │ │ │ ├── gio │ │ │ │ ├── gappinfo.h │ │ │ │ ├── gasyncresult.h │ │ │ │ ├── gbufferedinputstream.h │ │ │ │ ├── gbufferedoutputstream.h │ │ │ │ ├── gcancellable.h │ │ │ │ ├── gcontenttype.h │ │ │ │ ├── gdatainputstream.h │ │ │ │ ├── gdataoutputstream.h │ │ │ │ ├── gdrive.h │ │ │ │ ├── gemblem.h │ │ │ │ ├── gemblemedicon.h │ │ │ │ ├── gfile.h │ │ │ │ ├── gfileattribute.h │ │ │ │ ├── gfileenumerator.h │ │ │ │ ├── gfileicon.h │ │ │ │ ├── gfileinfo.h │ │ │ │ ├── gfileinputstream.h │ │ │ │ ├── gfilemonitor.h │ │ │ │ ├── gfilenamecompleter.h │ │ │ │ ├── gfileoutputstream.h │ │ │ │ ├── gfilterinputstream.h │ │ │ │ ├── gfilteroutputstream.h │ │ │ │ ├── gicon.h │ │ │ │ ├── ginputstream.h │ │ │ │ ├── gio.h │ │ │ │ ├── gioenums.h │ │ │ │ ├── gioenumtypes.h │ │ │ │ ├── gioerror.h │ │ │ │ ├── giomodule.h │ │ │ │ ├── gioscheduler.h │ │ │ │ ├── giotypes.h │ │ │ │ ├── gloadableicon.h │ │ │ │ ├── gmemoryinputstream.h │ │ │ │ ├── gmemoryoutputstream.h │ │ │ │ ├── gmount.h │ │ │ │ ├── gmountoperation.h │ │ │ │ ├── gnativevolumemonitor.h │ │ │ │ ├── goutputstream.h │ │ │ │ ├── gseekable.h │ │ │ │ ├── gsimpleasyncresult.h │ │ │ │ ├── gthemedicon.h │ │ │ │ ├── gvfs.h │ │ │ │ ├── gvolume.h │ │ │ │ └── gvolumemonitor.h │ │ │ │ ├── glib-object.h │ │ │ │ ├── glib.h │ │ │ │ ├── glib │ │ │ │ ├── galloca.h │ │ │ │ ├── garray.h │ │ │ │ ├── gasyncqueue.h │ │ │ │ ├── gatomic.h │ │ │ │ ├── gbacktrace.h │ │ │ │ ├── gbase64.h │ │ │ │ ├── gbookmarkfile.h │ │ │ │ ├── gcache.h │ │ │ │ ├── gchecksum.h │ │ │ │ ├── gcompletion.h │ │ │ │ ├── gconvert.h │ │ │ │ ├── gdataset.h │ │ │ │ ├── gdate.h │ │ │ │ ├── gdir.h │ │ │ │ ├── gerror.h │ │ │ │ ├── gfileutils.h │ │ │ │ ├── ghash.h │ │ │ │ ├── ghook.h │ │ │ │ ├── gi18n-lib.h │ │ │ │ ├── gi18n.h │ │ │ │ ├── giochannel.h │ │ │ │ ├── gkeyfile.h │ │ │ │ ├── glist.h │ │ │ │ ├── gmacros.h │ │ │ │ ├── gmain.h │ │ │ │ ├── gmappedfile.h │ │ │ │ ├── gmarkup.h │ │ │ │ ├── gmem.h │ │ │ │ ├── gmessages.h │ │ │ │ ├── gnode.h │ │ │ │ ├── goption.h │ │ │ │ ├── gpattern.h │ │ │ │ ├── gpoll.h │ │ │ │ ├── gprimes.h │ │ │ │ ├── gprintf.h │ │ │ │ ├── gqsort.h │ │ │ │ ├── gquark.h │ │ │ │ ├── gqueue.h │ │ │ │ ├── grand.h │ │ │ │ ├── gregex.h │ │ │ │ ├── grel.h │ │ │ │ ├── gscanner.h │ │ │ │ ├── gsequence.h │ │ │ │ ├── gshell.h │ │ │ │ ├── gslice.h │ │ │ │ ├── gslist.h │ │ │ │ ├── gspawn.h │ │ │ │ ├── gstdio.h │ │ │ │ ├── gstrfuncs.h │ │ │ │ ├── gstring.h │ │ │ │ ├── gtestutils.h │ │ │ │ ├── gthread.h │ │ │ │ ├── gthreadpool.h │ │ │ │ ├── gtimer.h │ │ │ │ ├── gtree.h │ │ │ │ ├── gtypes.h │ │ │ │ ├── gunicode.h │ │ │ │ ├── gurifuncs.h │ │ │ │ ├── gutils.h │ │ │ │ └── gwin32.h │ │ │ │ ├── gmodule.h │ │ │ │ └── gobject │ │ │ │ ├── gboxed.h │ │ │ │ ├── gclosure.h │ │ │ │ ├── genums.h │ │ │ │ ├── gmarshal.h │ │ │ │ ├── gobject.h │ │ │ │ ├── gobjectnotifyqueue.c │ │ │ │ ├── gparam.h │ │ │ │ ├── gparamspecs.h │ │ │ │ ├── gsignal.h │ │ │ │ ├── gsourceclosure.h │ │ │ │ ├── gtype.h │ │ │ │ ├── gtypemodule.h │ │ │ │ ├── gtypeplugin.h │ │ │ │ ├── gvalue.h │ │ │ │ ├── gvaluearray.h │ │ │ │ ├── gvaluecollector.h │ │ │ │ └── gvaluetypes.h │ │ ├── lib │ │ │ ├── gio-2.0.def │ │ │ ├── gio-2.0.lib │ │ │ ├── glib-2.0.def │ │ │ ├── glib-2.0.lib │ │ │ ├── glib-2.0 │ │ │ │ └── include │ │ │ │ │ └── glibconfig.h │ │ │ ├── gmodule-2.0.def │ │ │ ├── gmodule-2.0.lib │ │ │ ├── gobject-2.0.def │ │ │ ├── gobject-2.0.lib │ │ │ ├── gthread-2.0.def │ │ │ ├── gthread-2.0.lib │ │ │ ├── libgio-2.0.dll.a │ │ │ ├── libglib-2.0.dll.a │ │ │ ├── libgmodule-2.0.dll.a │ │ │ ├── libgobject-2.0.dll.a │ │ │ ├── libgthread-2.0.dll.a │ │ │ └── pkgconfig │ │ │ │ ├── gio-2.0.pc │ │ │ │ ├── glib-2.0.pc │ │ │ │ ├── gmodule-2.0.pc │ │ │ │ ├── gmodule-no-export-2.0.pc │ │ │ │ ├── gobject-2.0.pc │ │ │ │ └── gthread-2.0.pc │ │ ├── lib64 │ │ │ ├── gio-2.0.def │ │ │ ├── gio-2.0.lib │ │ │ ├── glib-2.0.def │ │ │ ├── glib-2.0.lib │ │ │ ├── glib-2.0 │ │ │ │ └── include │ │ │ │ │ └── glibconfig.h │ │ │ ├── gmodule-2.0.def │ │ │ ├── gmodule-2.0.lib │ │ │ ├── gobject-2.0.def │ │ │ ├── gobject-2.0.lib │ │ │ ├── gthread-2.0.def │ │ │ ├── gthread-2.0.lib │ │ │ ├── libgio-2.0.dll.a │ │ │ ├── libglib-2.0.dll.a │ │ │ ├── libgmodule-2.0.dll.a │ │ │ ├── libgobject-2.0.dll.a │ │ │ ├── libgthread-2.0.dll.a │ │ │ └── pkgconfig │ │ │ │ ├── gio-2.0.pc │ │ │ │ ├── glib-2.0.pc │ │ │ │ ├── gmodule-2.0.pc │ │ │ │ ├── gmodule-no-export-2.0.pc │ │ │ │ ├── gobject-2.0.pc │ │ │ │ └── gthread-2.0.pc │ │ ├── manifest │ │ │ └── glib-dev_2.20.4-1_win32.mft │ │ └── share │ │ │ ├── aclocal │ │ │ ├── glib-2.0.m4 │ │ │ └── glib-gettext.m4 │ │ │ ├── doc │ │ │ └── glib-dev-2.20.4 │ │ │ │ └── COPYING │ │ │ └── glib-2.0 │ │ │ └── gettext │ │ │ ├── mkinstalldirs │ │ │ └── po │ │ │ └── Makefile.in.in │ ├── jpeg │ │ ├── README │ │ ├── jaricom.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jcarith.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jcparam.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdarith.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jinclude.h │ │ ├── jmemmgr.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ └── jversion.h │ ├── lua │ │ ├── COPYRIGHT │ │ ├── HISTORY │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── README │ │ ├── doc │ │ │ ├── amazon.gif │ │ │ ├── contents.html │ │ │ ├── cover.png │ │ │ ├── logo.gif │ │ │ ├── lua.1 │ │ │ ├── lua.css │ │ │ ├── lua.html │ │ │ ├── luac.1 │ │ │ ├── luac.html │ │ │ ├── manual.css │ │ │ ├── manual.html │ │ │ └── readme.html │ │ ├── etc │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── all.c │ │ │ ├── lua.hpp │ │ │ ├── lua.ico │ │ │ ├── lua.pc │ │ │ ├── luavs.bat │ │ │ ├── min.c │ │ │ ├── noparser.c │ │ │ └── strict.lua │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.c │ │ │ ├── lua.h │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ ├── lzio.h │ │ │ └── print.c │ │ └── test │ │ │ ├── README │ │ │ ├── bisect.lua │ │ │ ├── cf.lua │ │ │ ├── echo.lua │ │ │ ├── env.lua │ │ │ ├── factorial.lua │ │ │ ├── fib.lua │ │ │ ├── fibfor.lua │ │ │ ├── globals.lua │ │ │ ├── hello.lua │ │ │ ├── life.lua │ │ │ ├── luac.lua │ │ │ ├── printf.lua │ │ │ ├── readonly.lua │ │ │ ├── sieve.lua │ │ │ ├── sort.lua │ │ │ ├── table.lua │ │ │ ├── trace-calls.lua │ │ │ ├── trace-globals.lua │ │ │ └── xd.lua │ ├── ogg │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── README │ │ ├── configure.in │ │ ├── include │ │ │ └── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── bitwise.c │ │ │ └── framing.c │ ├── openal │ │ ├── docs │ │ │ ├── Effects Extension Guide.pdf │ │ │ ├── OpenAL 1.1 Specification.pdf │ │ │ ├── OpenAL Deployment Guide.pdf │ │ │ └── OpenAL Programmer's Guide.pdf │ │ ├── include │ │ │ ├── EFX-Util.h │ │ │ ├── al.h │ │ │ ├── alc.h │ │ │ ├── efx-creative.h │ │ │ ├── efx.h │ │ │ └── xram.h │ │ └── libs │ │ │ ├── win32 │ │ │ ├── EFX-Util_MT │ │ │ │ └── EFX-Util.lib │ │ │ ├── EFX-Util_MTDLL │ │ │ │ └── EFX-Util.lib │ │ │ └── OpenAL32.lib │ │ │ └── win64 │ │ │ ├── EFX-Util_MT │ │ │ └── EFX-Util.lib │ │ │ ├── EFX-Util_MTDLL │ │ │ └── EFX-Util.lib │ │ │ └── OpenAL32.lib │ ├── openexr │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── README │ │ ├── eLut.h │ │ ├── half.cpp │ │ ├── half.h │ │ ├── halfLimits.h │ │ └── toFloat.h │ ├── picomodel │ │ ├── lwo │ │ │ ├── clip.c │ │ │ ├── envelope.c │ │ │ ├── list.c │ │ │ ├── lwio.c │ │ │ ├── lwo2.c │ │ │ ├── lwo2.h │ │ │ ├── lwob.c │ │ │ ├── pntspols.c │ │ │ ├── surface.c │ │ │ ├── vecmath.c │ │ │ └── vmap.c │ │ ├── picointernal.c │ │ ├── picointernal.h │ │ ├── picomodel.c │ │ ├── picomodel.h │ │ ├── picomodules.c │ │ ├── pm_3ds.c │ │ ├── pm_ase.c │ │ ├── pm_fm.c │ │ ├── pm_fm.h │ │ ├── pm_lwo.c │ │ ├── pm_md2.c │ │ ├── pm_md3.c │ │ ├── pm_mdc.c │ │ ├── pm_ms3d.c │ │ ├── pm_obj.c │ │ └── pm_terrain.c │ ├── png │ │ ├── ANNOUNCE │ │ ├── CHANGES │ │ ├── INSTALL │ │ ├── KNOWNBUG │ │ ├── LICENSE │ │ ├── README │ │ ├── TODO │ │ ├── Y2KINFO │ │ ├── example.c │ │ ├── png.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngerror.c │ │ ├── pnggccrd.c │ │ ├── pngget.c │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngtrans.c │ │ ├── pngvcrd.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ └── pngwutil.c │ ├── sdl2 │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_emscripten.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_ngage.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wingdk.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_xbox.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_guid.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ └── lib │ │ │ ├── x64 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2main.lib │ │ │ └── SDL2test.lib │ │ │ └── x86 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2main.lib │ │ │ └── SDL2test.lib │ ├── speex │ │ ├── _kiss_fft_guts.h │ │ ├── arch.h │ │ ├── bits.c │ │ ├── buffer.c │ │ ├── cb_search.c │ │ ├── cb_search.h │ │ ├── cb_search_arm4.h │ │ ├── cb_search_bfin.h │ │ ├── cb_search_sse.h │ │ ├── config.h │ │ ├── echo_diagnostic.m │ │ ├── exc_10_16_table.c │ │ ├── exc_10_32_table.c │ │ ├── exc_20_32_table.c │ │ ├── exc_5_256_table.c │ │ ├── exc_5_64_table.c │ │ ├── exc_8_128_table.c │ │ ├── fftwrap.c │ │ ├── fftwrap.h │ │ ├── filterbank.c │ │ ├── filterbank.h │ │ ├── filters.c │ │ ├── filters.h │ │ ├── filters_arm4.h │ │ ├── filters_bfin.h │ │ ├── filters_sse.h │ │ ├── fixed_arm4.h │ │ ├── fixed_arm5e.h │ │ ├── fixed_bfin.h │ │ ├── fixed_debug.h │ │ ├── fixed_generic.h │ │ ├── gain_table.c │ │ ├── gain_table_lbr.c │ │ ├── hexc_10_32_table.c │ │ ├── hexc_table.c │ │ ├── high_lsp_tables.c │ │ ├── include │ │ │ └── speex │ │ │ │ ├── speex.h │ │ │ │ ├── speex_bits.h │ │ │ │ ├── speex_buffer.h │ │ │ │ ├── speex_callbacks.h │ │ │ │ ├── speex_config_types.h │ │ │ │ ├── speex_echo.h │ │ │ │ ├── speex_header.h │ │ │ │ ├── speex_jitter.h │ │ │ │ ├── speex_preprocess.h │ │ │ │ ├── speex_resampler.h │ │ │ │ ├── speex_stereo.h │ │ │ │ └── speex_types.h │ │ ├── jitter.c │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── kiss_fftr.c │ │ ├── kiss_fftr.h │ │ ├── lpc.h │ │ ├── lpc_bfin.h │ │ ├── lsp.h │ │ ├── lsp_bfin.h │ │ ├── lsp_tables_nb.c │ │ ├── ltp.c │ │ ├── ltp.h │ │ ├── ltp_arm4.h │ │ ├── ltp_bfin.h │ │ ├── ltp_sse.h │ │ ├── math_approx.h │ │ ├── mdf.c │ │ ├── misc_bfin.h │ │ ├── modes.c │ │ ├── modes.h │ │ ├── modes_wb.c │ │ ├── nb_celp.c │ │ ├── nb_celp.h │ │ ├── os_support.h │ │ ├── preprocess.c │ │ ├── pseudofloat.h │ │ ├── quant_lsp.c │ │ ├── quant_lsp.h │ │ ├── quant_lsp_bfin.h │ │ ├── resample.c │ │ ├── sb_celp.c │ │ ├── sb_celp.h │ │ ├── smallft.h │ │ ├── speex.c │ │ ├── speex_callbacks.c │ │ ├── speex_header.c │ │ ├── speex_lpc.c │ │ ├── speex_lsp.c │ │ ├── speex_smallft.c │ │ ├── speex_window.c │ │ ├── stack_alloc.h │ │ ├── stereo.c │ │ ├── testdenoise.c │ │ ├── testecho.c │ │ ├── testenc.c │ │ ├── testenc_uwb.c │ │ ├── testenc_wb.c │ │ ├── vbr.c │ │ ├── vbr.h │ │ ├── vorbis_psy.h │ │ ├── vq.c │ │ ├── vq.h │ │ ├── vq_arm4.h │ │ ├── vq_bfin.h │ │ └── vq_sse.h │ ├── theora │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── README │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dump_video.c │ │ │ ├── encoder_example.c │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ ├── getopt1.c │ │ │ ├── player_example.c │ │ │ └── png2theora.c │ │ ├── include │ │ │ └── theora │ │ │ │ ├── codec.h │ │ │ │ ├── theora.h │ │ │ │ ├── theoradec.h │ │ │ │ └── theoraenc.h │ │ └── lib │ │ │ ├── Version_script │ │ │ ├── Version_script-dec │ │ │ ├── Version_script-enc │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── dec │ │ │ ├── apiwrapper.c │ │ │ ├── apiwrapper.h │ │ │ ├── bitpack.c │ │ │ ├── bitpack.h │ │ │ ├── dct.h │ │ │ ├── decapiwrapper.c │ │ │ ├── decinfo.c │ │ │ ├── decint.h │ │ │ ├── decode.c │ │ │ ├── dequant.c │ │ │ ├── dequant.h │ │ │ ├── fragment.c │ │ │ ├── huffdec.c │ │ │ ├── huffdec.h │ │ │ ├── huffman.h │ │ │ ├── idct.c │ │ │ ├── idct.h │ │ │ ├── internal.c │ │ │ ├── ocintrin.h │ │ │ ├── quant.c │ │ │ ├── quant.h │ │ │ ├── state.c │ │ │ ├── thinfo.c │ │ │ ├── x86 │ │ │ │ ├── mmxfrag.c │ │ │ │ ├── mmxidct.c │ │ │ │ ├── mmxstate.c │ │ │ │ ├── x86int.h │ │ │ │ └── x86state.c │ │ │ └── x86_vc │ │ │ │ ├── mmxfrag.c │ │ │ │ ├── mmxidct.c │ │ │ │ ├── mmxloopfilter.c │ │ │ │ ├── mmxstate.c │ │ │ │ ├── x86int.h │ │ │ │ └── x86state.c │ │ │ ├── enc │ │ │ ├── block_inline.h │ │ │ ├── blockmap.c │ │ │ ├── codec_internal.h │ │ │ ├── dct.c │ │ │ ├── dct_decode.c │ │ │ ├── dct_encode.c │ │ │ ├── dsp.c │ │ │ ├── dsp.h │ │ │ ├── encapiwrapper.c │ │ │ ├── encode.c │ │ │ ├── encoder_disabled.c │ │ │ ├── encoder_huffman.c │ │ │ ├── encoder_huffman.h │ │ │ ├── encoder_idct.c │ │ │ ├── encoder_lookup.h │ │ │ ├── encoder_quant.c │ │ │ ├── encoder_toplevel.c │ │ │ ├── frarray.c │ │ │ ├── frinit.c │ │ │ ├── hufftables.h │ │ │ ├── mcomp.c │ │ │ ├── misc_common.c │ │ │ ├── pb.c │ │ │ ├── pp.c │ │ │ ├── pp.h │ │ │ ├── quant_lookup.h │ │ │ ├── reconstruct.c │ │ │ ├── scan.c │ │ │ ├── toplevel_lookup.h │ │ │ ├── x86_32 │ │ │ │ ├── dct_decode_mmx.c │ │ │ │ ├── dsp_mmx.c │ │ │ │ ├── dsp_mmxext.c │ │ │ │ ├── fdct_mmx.c │ │ │ │ ├── idct_mmx.c │ │ │ │ └── recon_mmx.c │ │ │ ├── x86_32_vs │ │ │ │ ├── dsp_mmx.c │ │ │ │ ├── fdct_mmx.c │ │ │ │ └── recon_mmx.c │ │ │ └── x86_64 │ │ │ │ ├── dct_decode_mmx.c │ │ │ │ ├── dsp_mmx.c │ │ │ │ ├── dsp_mmxext.c │ │ │ │ ├── fdct_mmx.c │ │ │ │ ├── idct_mmx.c │ │ │ │ └── recon_mmx.c │ │ │ └── internal.h │ ├── vorbis │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── README │ │ ├── configure.in │ │ ├── examples │ │ │ ├── chaining_example.c │ │ │ ├── decoder_example.c │ │ │ ├── encoder_example.c │ │ │ ├── seeking_example.c │ │ │ └── vorbisfile_example.c │ │ ├── include │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ └── lib │ │ │ ├── analysis.c │ │ │ ├── backends.h │ │ │ ├── bitrate.c │ │ │ ├── bitrate.h │ │ │ ├── block.c │ │ │ ├── books │ │ │ ├── coupled │ │ │ │ ├── res_books_51.h │ │ │ │ └── res_books_stereo.h │ │ │ ├── floor │ │ │ │ └── floor_books.h │ │ │ └── uncoupled │ │ │ │ └── res_books_uncoupled.h │ │ │ ├── codebook.c │ │ │ ├── codebook.h │ │ │ ├── codec_internal.h │ │ │ ├── envelope.c │ │ │ ├── envelope.h │ │ │ ├── floor0.c │ │ │ ├── floor1.c │ │ │ ├── highlevel.h │ │ │ ├── info.c │ │ │ ├── lookup.c │ │ │ ├── lookup.h │ │ │ ├── lookup_data.h │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── mapping0.c │ │ │ ├── masking.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── misc.h │ │ │ ├── modes │ │ │ ├── floor_all.h │ │ │ ├── psych_11.h │ │ │ ├── psych_16.h │ │ │ ├── psych_44.h │ │ │ ├── psych_8.h │ │ │ ├── residue_16.h │ │ │ ├── residue_44.h │ │ │ ├── residue_44p51.h │ │ │ ├── residue_44u.h │ │ │ ├── residue_8.h │ │ │ ├── setup_11.h │ │ │ ├── setup_16.h │ │ │ ├── setup_22.h │ │ │ ├── setup_32.h │ │ │ ├── setup_44.h │ │ │ ├── setup_44p51.h │ │ │ ├── setup_44u.h │ │ │ ├── setup_8.h │ │ │ └── setup_X.h │ │ │ ├── os.h │ │ │ ├── psy.c │ │ │ ├── psy.h │ │ │ ├── registry.c │ │ │ ├── registry.h │ │ │ ├── res0.c │ │ │ ├── scales.h │ │ │ ├── sharedbook.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── synthesis.c │ │ │ ├── vorbisenc.c │ │ │ ├── vorbisfile.c │ │ │ ├── window.c │ │ │ └── window.h │ └── zlib │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── Makefile │ │ ├── README │ │ ├── adler32.c │ │ ├── algorithm.txt │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzio.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── movalike-rbquake3.sh ├── premake │ ├── premake5.exe │ ├── premake5.lua │ ├── premake5_experimental-with-bullet_vs2017.bat │ ├── premake5_standalone_vs2017.bat │ └── premake5_vs2017.bat ├── shared │ ├── bg_public.h │ ├── botshared │ │ ├── be_aas.h │ │ ├── be_ai_char.h │ │ ├── be_ai_chat.h │ │ ├── be_ai_gen.h │ │ ├── be_ai_goal.h │ │ ├── be_ai_move.h │ │ ├── be_ai_weap.h │ │ ├── be_ea.h │ │ └── botlib.h │ ├── cg_public.h │ ├── g_public.h │ ├── keycodes.h │ ├── q_math.c │ ├── q_platform.h │ ├── q_shared.c │ ├── q_shared.h │ ├── surfaceflags.h │ ├── tr_types.h │ └── ui_public.h └── tools │ ├── common │ ├── aselib.c │ ├── aselib.h │ ├── bspfile.c │ ├── bspfile.h │ ├── cmdlib.c │ ├── cmdlib.h │ ├── imagelib.c │ ├── imagelib.h │ ├── inout.c │ ├── inout.h │ ├── l3dslib.c │ ├── l3dslib.h │ ├── mathlib.c │ ├── mathlib.h │ ├── mutex.c │ ├── mutex.h │ ├── netlib.c │ ├── netlib.h │ ├── polylib.c │ ├── polylib.h │ ├── polyset.h │ ├── qfiles.h │ ├── scriplib.c │ ├── scriplib.h │ ├── surfaceflags.h │ ├── threads.c │ ├── threads.h │ ├── trilib.c │ ├── trilib.h │ ├── unzip.c │ ├── unzip.h │ ├── vfs.c │ └── vfs.h │ ├── master │ ├── common.h │ ├── master.c │ ├── messages.c │ ├── messages.h │ ├── premake4.lua │ ├── servers.c │ └── servers.h │ ├── xmap │ ├── brush.c │ ├── brush_primit.c │ ├── bsp.c │ ├── convert_ase.c │ ├── convert_map.c │ ├── convert_t3dtomap.c │ ├── facebsp.c │ ├── fog.c │ ├── gldraw.c │ ├── glfile.c │ ├── leakfile.c │ ├── light.c │ ├── light.h │ ├── light_trace.c │ ├── lightmaps.c │ ├── lightv.c │ ├── main.c │ ├── map.c │ ├── mesh.c │ ├── mesh.h │ ├── misc_model.c │ ├── nodraw.c │ ├── patch.c │ ├── portals.c │ ├── prtfile.c │ ├── qbsp.h │ ├── shaders.c │ ├── shaders.h │ ├── surface.c │ ├── terrain.c │ ├── tjunction.c │ ├── tree.c │ ├── vis.c │ ├── vis.h │ ├── visflow.c │ ├── writebsp.c │ ├── xmap.sln │ └── xmap.vcproj │ └── xmap2 │ ├── brush.c │ ├── brush_primit.c │ ├── bsp.c │ ├── bspfile_abstract.c │ ├── bspfile_ibsp.c │ ├── bspfile_rbsp.c │ ├── bspfile_xbsp.c │ ├── convert_ase.c │ ├── convert_map.c │ ├── decals.c │ ├── facebsp.c │ ├── fog.c │ ├── game_xreal.h │ ├── gldraw.c │ ├── image.c │ ├── leakfile.c │ ├── light.c │ ├── light_bounce.c │ ├── light_trace.c │ ├── light_ydnar.c │ ├── lightmaps_ydnar.c │ ├── listen.pl │ ├── main.c │ ├── map.c │ ├── mesh.c │ ├── model.c │ ├── patch.c │ ├── path_init.c │ ├── portals.c │ ├── premake4.lua │ ├── prtfile.c │ ├── q3map2.h │ ├── shaders.c │ ├── surface_abstract.c │ ├── surface_extra.c │ ├── surface_foliage.c │ ├── surface_fur.c │ ├── surface_meta.c │ ├── tjunction.c │ ├── tree.c │ ├── vis.c │ ├── visflow.c │ ├── writebsp.c │ ├── xmap2.ico │ └── xmap2.rc ├── docs ├── CHANGELOG.txt ├── CODINGSTYLE.txt ├── CONTRIBUTORS.txt ├── COPYING.txt ├── GPL.txt ├── README.txt ├── TODO.txt ├── ioquake3_logo.png ├── ql-mouse-accel.txt └── xreal_scrnshot.jpg └── tools └── blender ├── blender-2.49 ├── ase_export.py ├── ase_import.py ├── blender2md5camerav01.py ├── blender2xreal.py ├── blender2xreal_ase.py ├── blender2xreal_build.sh ├── blender2xreal_entity.py ├── blender2xreal_map.py ├── blender2xreal_math.py ├── blender2xreal_tools.py ├── md3.py ├── md3_export.py ├── md3_import.py ├── md5_export.py ├── md5_import.py ├── psa_import.py ├── psk_export.py ├── psk_import.py ├── q_math.py └── q_shared.py └── blender-2.59 └── scripts └── addons ├── io_export_md5.py └── io_import_md5mesh.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/README.md -------------------------------------------------------------------------------- /base/autoexec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/autoexec.cfg -------------------------------------------------------------------------------- /base/def/entities.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/def/entities.def -------------------------------------------------------------------------------- /base/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/default.cfg -------------------------------------------------------------------------------- /base/ffa.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ffa.cfg -------------------------------------------------------------------------------- /base/fonts/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeMono.ttf -------------------------------------------------------------------------------- /base/fonts/FreeMonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeMonoBold.ttf -------------------------------------------------------------------------------- /base/fonts/FreeMonoOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeMonoOblique.ttf -------------------------------------------------------------------------------- /base/fonts/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeSans.ttf -------------------------------------------------------------------------------- /base/fonts/FreeSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeSansBold.ttf -------------------------------------------------------------------------------- /base/fonts/FreeSansOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeSansOblique.ttf -------------------------------------------------------------------------------- /base/fonts/FreeSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeSerif.ttf -------------------------------------------------------------------------------- /base/fonts/FreeSerifBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeSerifBold.ttf -------------------------------------------------------------------------------- /base/fonts/FreeSerifItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/FreeSerifItalic.ttf -------------------------------------------------------------------------------- /base/fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/Vera.ttf -------------------------------------------------------------------------------- /base/fonts/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraBI.ttf -------------------------------------------------------------------------------- /base/fonts/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraBd.ttf -------------------------------------------------------------------------------- /base/fonts/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraIt.ttf -------------------------------------------------------------------------------- /base/fonts/VeraMoBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraMoBI.ttf -------------------------------------------------------------------------------- /base/fonts/VeraMoBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraMoBd.ttf -------------------------------------------------------------------------------- /base/fonts/VeraMoIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraMoIt.ttf -------------------------------------------------------------------------------- /base/fonts/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraMono.ttf -------------------------------------------------------------------------------- /base/fonts/VeraSe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraSe.ttf -------------------------------------------------------------------------------- /base/fonts/VeraSeBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/fonts/VeraSeBd.ttf -------------------------------------------------------------------------------- /base/glsl/bloom_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/bloom_fp.glsl -------------------------------------------------------------------------------- /base/glsl/bloom_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/bloom_vp.glsl -------------------------------------------------------------------------------- /base/glsl/blurX_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/blurX_fp.glsl -------------------------------------------------------------------------------- /base/glsl/blurX_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/blurX_vp.glsl -------------------------------------------------------------------------------- /base/glsl/blurY_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/blurY_fp.glsl -------------------------------------------------------------------------------- /base/glsl/blurY_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/blurY_vp.glsl -------------------------------------------------------------------------------- /base/glsl/cameraEffects_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/cameraEffects_fp.glsl -------------------------------------------------------------------------------- /base/glsl/cameraEffects_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/cameraEffects_vp.glsl -------------------------------------------------------------------------------- /base/glsl/contrast_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/contrast_fp.glsl -------------------------------------------------------------------------------- /base/glsl/contrast_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/contrast_vp.glsl -------------------------------------------------------------------------------- /base/glsl/debugShadowMap_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/debugShadowMap_fp.glsl -------------------------------------------------------------------------------- /base/glsl/debugShadowMap_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/debugShadowMap_vp.glsl -------------------------------------------------------------------------------- /base/glsl/deformVertexes_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/deformVertexes_vp.glsl -------------------------------------------------------------------------------- /base/glsl/depthOfField_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/depthOfField_fp.glsl -------------------------------------------------------------------------------- /base/glsl/depthOfField_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/depthOfField_vp.glsl -------------------------------------------------------------------------------- /base/glsl/depthToColor_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/depthToColor_fp.glsl -------------------------------------------------------------------------------- /base/glsl/depthToColor_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/depthToColor_vp.glsl -------------------------------------------------------------------------------- /base/glsl/dispersion_C_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/dispersion_C_fp.glsl -------------------------------------------------------------------------------- /base/glsl/dispersion_C_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/dispersion_C_vp.glsl -------------------------------------------------------------------------------- /base/glsl/fogGlobal_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/fogGlobal_fp.glsl -------------------------------------------------------------------------------- /base/glsl/fogGlobal_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/fogGlobal_vp.glsl -------------------------------------------------------------------------------- /base/glsl/fogQuake3_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/fogQuake3_fp.glsl -------------------------------------------------------------------------------- /base/glsl/fogQuake3_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/fogQuake3_vp.glsl -------------------------------------------------------------------------------- /base/glsl/forwardLighting_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/forwardLighting_fp.glsl -------------------------------------------------------------------------------- /base/glsl/forwardLighting_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/forwardLighting_vp.glsl -------------------------------------------------------------------------------- /base/glsl/generic_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/generic_fp.glsl -------------------------------------------------------------------------------- /base/glsl/generic_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/generic_vp.glsl -------------------------------------------------------------------------------- /base/glsl/geometricFill_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/geometricFill_fp.glsl -------------------------------------------------------------------------------- /base/glsl/geometricFill_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/geometricFill_vp.glsl -------------------------------------------------------------------------------- /base/glsl/heatHaze_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/heatHaze_fp.glsl -------------------------------------------------------------------------------- /base/glsl/heatHaze_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/heatHaze_vp.glsl -------------------------------------------------------------------------------- /base/glsl/lightMapping_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/lightMapping_fp.glsl -------------------------------------------------------------------------------- /base/glsl/lightMapping_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/lightMapping_vp.glsl -------------------------------------------------------------------------------- /base/glsl/liquid_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/liquid_fp.glsl -------------------------------------------------------------------------------- /base/glsl/liquid_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/liquid_vp.glsl -------------------------------------------------------------------------------- /base/glsl/motionBlur_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/motionBlur_fp.glsl -------------------------------------------------------------------------------- /base/glsl/motionBlur_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/motionBlur_vp.glsl -------------------------------------------------------------------------------- /base/glsl/portal_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/portal_fp.glsl -------------------------------------------------------------------------------- /base/glsl/portal_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/portal_vp.glsl -------------------------------------------------------------------------------- /base/glsl/reflection_CB_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/reflection_CB_fp.glsl -------------------------------------------------------------------------------- /base/glsl/reflection_CB_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/reflection_CB_vp.glsl -------------------------------------------------------------------------------- /base/glsl/refraction_C_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/refraction_C_fp.glsl -------------------------------------------------------------------------------- /base/glsl/refraction_C_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/refraction_C_vp.glsl -------------------------------------------------------------------------------- /base/glsl/reliefMapping_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/reliefMapping_fp.glsl -------------------------------------------------------------------------------- /base/glsl/rotoscope_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/rotoscope_fp.glsl -------------------------------------------------------------------------------- /base/glsl/rotoscope_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/rotoscope_vp.glsl -------------------------------------------------------------------------------- /base/glsl/screen_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/screen_fp.glsl -------------------------------------------------------------------------------- /base/glsl/screen_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/screen_vp.glsl -------------------------------------------------------------------------------- /base/glsl/shadowFill_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/shadowFill_fp.glsl -------------------------------------------------------------------------------- /base/glsl/shadowFill_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/shadowFill_vp.glsl -------------------------------------------------------------------------------- /base/glsl/skybox_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/skybox_fp.glsl -------------------------------------------------------------------------------- /base/glsl/skybox_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/skybox_vp.glsl -------------------------------------------------------------------------------- /base/glsl/toneMapping_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/toneMapping_fp.glsl -------------------------------------------------------------------------------- /base/glsl/toneMapping_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/toneMapping_vp.glsl -------------------------------------------------------------------------------- /base/glsl/vertexAnimation_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/vertexAnimation_vp.glsl -------------------------------------------------------------------------------- /base/glsl/vertexSkinning_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/vertexSkinning_vp.glsl -------------------------------------------------------------------------------- /base/glsl/volumetricFog_fp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/volumetricFog_fp.glsl -------------------------------------------------------------------------------- /base/glsl/volumetricFog_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/glsl/volumetricFog_vp.glsl -------------------------------------------------------------------------------- /base/materials/player_visor.mtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/materials/player_visor.mtr -------------------------------------------------------------------------------- /base/ui/assets/3_cursor3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/3_cursor3.tga -------------------------------------------------------------------------------- /base/ui/assets/backarrow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/backarrow.tga -------------------------------------------------------------------------------- /base/ui/assets/backarrow_alt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/backarrow_alt.tga -------------------------------------------------------------------------------- /base/ui/assets/fadebox.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/fadebox.tga -------------------------------------------------------------------------------- /base/ui/assets/forwardarrow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/forwardarrow.tga -------------------------------------------------------------------------------- /base/ui/assets/framebutton.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/framebutton.tga -------------------------------------------------------------------------------- /base/ui/assets/gradientbar2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/gradientbar2.tga -------------------------------------------------------------------------------- /base/ui/assets/halfgradleft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/halfgradleft.tga -------------------------------------------------------------------------------- /base/ui/assets/halfgradright.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/halfgradright.tga -------------------------------------------------------------------------------- /base/ui/assets/mainmenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/mainmenu.jpg -------------------------------------------------------------------------------- /base/ui/assets/scrollbar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/scrollbar.tga -------------------------------------------------------------------------------- /base/ui/assets/slider2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/slider2.tga -------------------------------------------------------------------------------- /base/ui/assets/sliderbutt_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/sliderbutt_1.tga -------------------------------------------------------------------------------- /base/ui/assets/title.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/assets/title.tga -------------------------------------------------------------------------------- /base/ui/cgame/hud.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/cgame/hud.menu -------------------------------------------------------------------------------- /base/ui/cgame/score.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/cgame/score.menu -------------------------------------------------------------------------------- /base/ui/cgame/teamscore.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/cgame/teamscore.menu -------------------------------------------------------------------------------- /base/ui/connect.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/connect.menu -------------------------------------------------------------------------------- /base/ui/createfavorite.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/createfavorite.menu -------------------------------------------------------------------------------- /base/ui/createserver.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/createserver.menu -------------------------------------------------------------------------------- /base/ui/demo.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/demo.menu -------------------------------------------------------------------------------- /base/ui/download.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/download.menu -------------------------------------------------------------------------------- /base/ui/drop.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/drop.menu -------------------------------------------------------------------------------- /base/ui/error.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/error.menu -------------------------------------------------------------------------------- /base/ui/findplayer.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/findplayer.menu -------------------------------------------------------------------------------- /base/ui/hud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/hud.txt -------------------------------------------------------------------------------- /base/ui/ingame.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/ingame.menu -------------------------------------------------------------------------------- /base/ui/ingame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/ingame.txt -------------------------------------------------------------------------------- /base/ui/ingame_game.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/ingame_game.menu -------------------------------------------------------------------------------- /base/ui/ingame_help.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/ingame_help.menu -------------------------------------------------------------------------------- /base/ui/ingame_leave.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/ingame_leave.menu -------------------------------------------------------------------------------- /base/ui/ingame_options.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/ingame_options.menu -------------------------------------------------------------------------------- /base/ui/joinserver.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/joinserver.menu -------------------------------------------------------------------------------- /base/ui/main.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/main.menu -------------------------------------------------------------------------------- /base/ui/menudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/menudef.h -------------------------------------------------------------------------------- /base/ui/menus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/menus.txt -------------------------------------------------------------------------------- /base/ui/mod.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/mod.menu -------------------------------------------------------------------------------- /base/ui/news.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/news.menu -------------------------------------------------------------------------------- /base/ui/options.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/options.menu -------------------------------------------------------------------------------- /base/ui/password.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/password.menu -------------------------------------------------------------------------------- /base/ui/quit.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/quit.menu -------------------------------------------------------------------------------- /base/ui/serverinfo.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/base/ui/serverinfo.menu -------------------------------------------------------------------------------- /code/.clang-format-cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/.clang-format-cpp -------------------------------------------------------------------------------- /code/.clang-format-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/.clang-format-header -------------------------------------------------------------------------------- /code/astyle-cpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/astyle-cpp.ini -------------------------------------------------------------------------------- /code/astyle-header.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/astyle-header.ini -------------------------------------------------------------------------------- /code/astyle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/astyle.exe -------------------------------------------------------------------------------- /code/clang-format.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/clang-format.exe -------------------------------------------------------------------------------- /code/engine/botlib/aasfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/aasfile.h -------------------------------------------------------------------------------- /code/engine/botlib/be_aas_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_aas_bsp.h -------------------------------------------------------------------------------- /code/engine/botlib/be_aas_bspq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_aas_bspq3.c -------------------------------------------------------------------------------- /code/engine/botlib/be_aas_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_aas_debug.c -------------------------------------------------------------------------------- /code/engine/botlib/be_aas_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_aas_debug.h -------------------------------------------------------------------------------- /code/engine/botlib/be_aas_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_aas_def.h -------------------------------------------------------------------------------- /code/engine/botlib/be_ai_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_ai_char.c -------------------------------------------------------------------------------- /code/engine/botlib/be_ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_ai_chat.c -------------------------------------------------------------------------------- /code/engine/botlib/be_ai_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_ai_gen.c -------------------------------------------------------------------------------- /code/engine/botlib/be_ai_goal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_ai_goal.c -------------------------------------------------------------------------------- /code/engine/botlib/be_ai_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_ai_move.c -------------------------------------------------------------------------------- /code/engine/botlib/be_ai_weap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_ai_weap.c -------------------------------------------------------------------------------- /code/engine/botlib/be_ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/be_ea.c -------------------------------------------------------------------------------- /code/engine/botlib/l_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_crc.c -------------------------------------------------------------------------------- /code/engine/botlib/l_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_crc.h -------------------------------------------------------------------------------- /code/engine/botlib/l_libvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_libvar.c -------------------------------------------------------------------------------- /code/engine/botlib/l_libvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_libvar.h -------------------------------------------------------------------------------- /code/engine/botlib/l_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_log.c -------------------------------------------------------------------------------- /code/engine/botlib/l_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_log.h -------------------------------------------------------------------------------- /code/engine/botlib/l_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_memory.c -------------------------------------------------------------------------------- /code/engine/botlib/l_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_memory.h -------------------------------------------------------------------------------- /code/engine/botlib/l_precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_precomp.c -------------------------------------------------------------------------------- /code/engine/botlib/l_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_precomp.h -------------------------------------------------------------------------------- /code/engine/botlib/l_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_script.c -------------------------------------------------------------------------------- /code/engine/botlib/l_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_script.h -------------------------------------------------------------------------------- /code/engine/botlib/l_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_struct.c -------------------------------------------------------------------------------- /code/engine/botlib/l_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_struct.h -------------------------------------------------------------------------------- /code/engine/botlib/l_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/botlib/l_utils.h -------------------------------------------------------------------------------- /code/engine/client/cin_ogm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cin_ogm.c -------------------------------------------------------------------------------- /code/engine/client/cl_avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_avi.c -------------------------------------------------------------------------------- /code/engine/client/cl_cgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_cgame.c -------------------------------------------------------------------------------- /code/engine/client/cl_cin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_cin.c -------------------------------------------------------------------------------- /code/engine/client/cl_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_console.c -------------------------------------------------------------------------------- /code/engine/client/cl_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_curl.c -------------------------------------------------------------------------------- /code/engine/client/cl_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_curl.h -------------------------------------------------------------------------------- /code/engine/client/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_input.c -------------------------------------------------------------------------------- /code/engine/client/cl_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_keys.c -------------------------------------------------------------------------------- /code/engine/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_main.c -------------------------------------------------------------------------------- /code/engine/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_parse.c -------------------------------------------------------------------------------- /code/engine/client/cl_scrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_scrn.c -------------------------------------------------------------------------------- /code/engine/client/cl_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/cl_ui.c -------------------------------------------------------------------------------- /code/engine/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/client.h -------------------------------------------------------------------------------- /code/engine/client/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/client/keys.h -------------------------------------------------------------------------------- /code/engine/collision/cm_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/collision/cm_load.c -------------------------------------------------------------------------------- /code/engine/collision/cm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/collision/cm_test.c -------------------------------------------------------------------------------- /code/engine/null/null_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/null/null_client.c -------------------------------------------------------------------------------- /code/engine/null/null_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/null/null_glimp.c -------------------------------------------------------------------------------- /code/engine/null/null_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/null/null_input.c -------------------------------------------------------------------------------- /code/engine/null/null_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/null/null_main.c -------------------------------------------------------------------------------- /code/engine/null/null_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/null/null_net.c -------------------------------------------------------------------------------- /code/engine/null/null_snddma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/null/null_snddma.c -------------------------------------------------------------------------------- /code/engine/qcommon/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/cmd.c -------------------------------------------------------------------------------- /code/engine/qcommon/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/common.c -------------------------------------------------------------------------------- /code/engine/qcommon/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/cvar.c -------------------------------------------------------------------------------- /code/engine/qcommon/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/files.c -------------------------------------------------------------------------------- /code/engine/qcommon/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/huffman.c -------------------------------------------------------------------------------- /code/engine/qcommon/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/md4.c -------------------------------------------------------------------------------- /code/engine/qcommon/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/md5.c -------------------------------------------------------------------------------- /code/engine/qcommon/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/msg.c -------------------------------------------------------------------------------- /code/engine/qcommon/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/net_chan.c -------------------------------------------------------------------------------- /code/engine/qcommon/net_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/net_ip.c -------------------------------------------------------------------------------- /code/engine/qcommon/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/parse.c -------------------------------------------------------------------------------- /code/engine/qcommon/qcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/qcommon.h -------------------------------------------------------------------------------- /code/engine/qcommon/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/qfiles.h -------------------------------------------------------------------------------- /code/engine/qcommon/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/unzip.c -------------------------------------------------------------------------------- /code/engine/qcommon/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/unzip.h -------------------------------------------------------------------------------- /code/engine/qcommon/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/qcommon/vm.c -------------------------------------------------------------------------------- /code/engine/renderer/rendererGL.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | GetRefAPI 3 | -------------------------------------------------------------------------------- /code/engine/renderer/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_bsp.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_cmds.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_curve.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_fbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_fbo.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_font.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_image.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_light.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_local.h -------------------------------------------------------------------------------- /code/engine/renderer/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_main.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_marks.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_mesh.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_model.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_noise.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_scene.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_skin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_skin.c -------------------------------------------------------------------------------- /code/engine/renderer/tr_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_sky.cpp -------------------------------------------------------------------------------- /code/engine/renderer/tr_vbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/renderer/tr_vbo.c -------------------------------------------------------------------------------- /code/engine/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/server/server.h -------------------------------------------------------------------------------- /code/engine/server/sv_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/server/sv_bot.c -------------------------------------------------------------------------------- /code/engine/server/sv_ccmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/server/sv_ccmds.c -------------------------------------------------------------------------------- /code/engine/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/server/sv_client.c -------------------------------------------------------------------------------- /code/engine/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/server/sv_game.c -------------------------------------------------------------------------------- /code/engine/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/server/sv_init.c -------------------------------------------------------------------------------- /code/engine/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/server/sv_main.c -------------------------------------------------------------------------------- /code/engine/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/server/sv_world.c -------------------------------------------------------------------------------- /code/engine/sound/qal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/qal.c -------------------------------------------------------------------------------- /code/engine/sound/qal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/qal.h -------------------------------------------------------------------------------- /code/engine/sound/snd_adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_adpcm.c -------------------------------------------------------------------------------- /code/engine/sound/snd_altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_altivec.c -------------------------------------------------------------------------------- /code/engine/sound/snd_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_codec.c -------------------------------------------------------------------------------- /code/engine/sound/snd_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_codec.h -------------------------------------------------------------------------------- /code/engine/sound/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_dma.c -------------------------------------------------------------------------------- /code/engine/sound/snd_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_local.h -------------------------------------------------------------------------------- /code/engine/sound/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_main.c -------------------------------------------------------------------------------- /code/engine/sound/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_mem.c -------------------------------------------------------------------------------- /code/engine/sound/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_mix.c -------------------------------------------------------------------------------- /code/engine/sound/snd_openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_openal.c -------------------------------------------------------------------------------- /code/engine/sound/snd_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_public.h -------------------------------------------------------------------------------- /code/engine/sound/snd_wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sound/snd_wavelet.c -------------------------------------------------------------------------------- /code/engine/sys/con_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/con_log.c -------------------------------------------------------------------------------- /code/engine/sys/con_passive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/con_passive.c -------------------------------------------------------------------------------- /code/engine/sys/con_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/con_tty.c -------------------------------------------------------------------------------- /code/engine/sys/con_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/con_win32.c -------------------------------------------------------------------------------- /code/engine/sys/qe3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/qe3.ico -------------------------------------------------------------------------------- /code/engine/sys/sdl_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sdl_gamma.c -------------------------------------------------------------------------------- /code/engine/sys/sdl_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sdl_glimp.c -------------------------------------------------------------------------------- /code/engine/sys/sdl_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sdl_icon.h -------------------------------------------------------------------------------- /code/engine/sys/sdl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sdl_input.c -------------------------------------------------------------------------------- /code/engine/sys/sdl_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sdl_snd.c -------------------------------------------------------------------------------- /code/engine/sys/sdl_vid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sdl_vid.c -------------------------------------------------------------------------------- /code/engine/sys/sys_loadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sys_loadlib.h -------------------------------------------------------------------------------- /code/engine/sys/sys_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sys_local.h -------------------------------------------------------------------------------- /code/engine/sys/sys_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sys_main.c -------------------------------------------------------------------------------- /code/engine/sys/sys_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sys_unix.c -------------------------------------------------------------------------------- /code/engine/sys/sys_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/sys_win32.c -------------------------------------------------------------------------------- /code/engine/sys/win_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/win_resource.h -------------------------------------------------------------------------------- /code/engine/sys/win_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/engine/sys/win_resource.rc -------------------------------------------------------------------------------- /code/format_code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/format_code.bat -------------------------------------------------------------------------------- /code/format_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/format_code.sh -------------------------------------------------------------------------------- /code/format_slimvoids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/format_slimvoids.py -------------------------------------------------------------------------------- /code/games/default/game/chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/default/game/chars.h -------------------------------------------------------------------------------- /code/games/default/game/g_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/default/game/g_bot.c -------------------------------------------------------------------------------- /code/games/default/game/g_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/default/game/g_mem.c -------------------------------------------------------------------------------- /code/games/default/game/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain 4 | -------------------------------------------------------------------------------- /code/games/default/game/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/default/game/inv.h -------------------------------------------------------------------------------- /code/games/default/game/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/default/game/match.h -------------------------------------------------------------------------------- /code/games/default/game/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/default/game/syn.h -------------------------------------------------------------------------------- /code/games/default/q3_ui/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry 4 | -------------------------------------------------------------------------------- /code/games/default/ui/menudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/default/ui/menudef.h -------------------------------------------------------------------------------- /code/games/xreal/cgame/cg_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/cgame/cg_lua.c -------------------------------------------------------------------------------- /code/games/xreal/cgame/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry 4 | -------------------------------------------------------------------------------- /code/games/xreal/game/bg_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/bg_misc.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_bot.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_cmds.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_items.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_local.h -------------------------------------------------------------------------------- /code/games/xreal/game/g_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_lua.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_main.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_mem.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_misc.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_mover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_mover.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_spawn.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_team.c -------------------------------------------------------------------------------- /code/games/xreal/game/g_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_team.h -------------------------------------------------------------------------------- /code/games/xreal/game/g_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/game/g_utils.c -------------------------------------------------------------------------------- /code/games/xreal/game/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain 4 | -------------------------------------------------------------------------------- /code/games/xreal/ui/menudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/ui/menudef.h -------------------------------------------------------------------------------- /code/games/xreal/ui/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry 4 | -------------------------------------------------------------------------------- /code/games/xreal/ui/ui_atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/ui/ui_atoms.c -------------------------------------------------------------------------------- /code/games/xreal/ui/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/ui/ui_local.h -------------------------------------------------------------------------------- /code/games/xreal/ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/ui/ui_main.c -------------------------------------------------------------------------------- /code/games/xreal/ui/ui_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/ui/ui_parse.c -------------------------------------------------------------------------------- /code/games/xreal/ui/ui_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/ui/ui_shared.c -------------------------------------------------------------------------------- /code/games/xreal/ui/ui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/games/xreal/ui/ui_shared.h -------------------------------------------------------------------------------- /code/libs/bullet/Bullet-C-Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/bullet/Bullet-C-Api.h -------------------------------------------------------------------------------- /code/libs/bullet/BulletMultiThreaded/SpuSampleTask/readme.txt: -------------------------------------------------------------------------------- 1 | Empty placeholder for future Libspe2 SPU task 2 | -------------------------------------------------------------------------------- /code/libs/bullet/MiniCL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/bullet/MiniCL/cl.h -------------------------------------------------------------------------------- /code/libs/bullet/MiniCL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/bullet/MiniCL/cl_gl.h -------------------------------------------------------------------------------- /code/libs/curl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/curl/CHANGES -------------------------------------------------------------------------------- /code/libs/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/curl/COPYING -------------------------------------------------------------------------------- /code/libs/curl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/curl/README -------------------------------------------------------------------------------- /code/libs/curl/RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/curl/RELEASE-NOTES -------------------------------------------------------------------------------- /code/libs/curl/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/curl/include/README -------------------------------------------------------------------------------- /code/libs/curl/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /code/libs/curl/lib/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/curl/lib/libcurl.dll -------------------------------------------------------------------------------- /code/libs/curl/lib/libcurl.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/curl/lib/libcurl.exp -------------------------------------------------------------------------------- /code/libs/curl/lib/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/curl/lib/libcurl.lib -------------------------------------------------------------------------------- /code/libs/freetype/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/ChangeLog -------------------------------------------------------------------------------- /code/libs/freetype/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/Jamfile -------------------------------------------------------------------------------- /code/libs/freetype/Jamrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/Jamrules -------------------------------------------------------------------------------- /code/libs/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/Makefile -------------------------------------------------------------------------------- /code/libs/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/README -------------------------------------------------------------------------------- /code/libs/freetype/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/autogen.sh -------------------------------------------------------------------------------- /code/libs/freetype/builds/newline: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /code/libs/freetype/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/configure -------------------------------------------------------------------------------- /code/libs/freetype/docs/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/CHANGES -------------------------------------------------------------------------------- /code/libs/freetype/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/DEBUG -------------------------------------------------------------------------------- /code/libs/freetype/docs/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/FTL.TXT -------------------------------------------------------------------------------- /code/libs/freetype/docs/GPL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/GPL.TXT -------------------------------------------------------------------------------- /code/libs/freetype/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/INSTALL -------------------------------------------------------------------------------- /code/libs/freetype/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/MAKEPP -------------------------------------------------------------------------------- /code/libs/freetype/docs/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/PATENTS -------------------------------------------------------------------------------- /code/libs/freetype/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/TODO -------------------------------------------------------------------------------- /code/libs/freetype/docs/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/docs/release -------------------------------------------------------------------------------- /code/libs/freetype/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/modules.cfg -------------------------------------------------------------------------------- /code/libs/freetype/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/objs/README -------------------------------------------------------------------------------- /code/libs/freetype/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/src/Jamfile -------------------------------------------------------------------------------- /code/libs/freetype/version.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/version.sed -------------------------------------------------------------------------------- /code/libs/freetype/vms_make.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/freetype/vms_make.com -------------------------------------------------------------------------------- /code/libs/gl3w/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/gl3w/README.rst -------------------------------------------------------------------------------- /code/libs/gl3w/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/gl3w/SConstruct -------------------------------------------------------------------------------- /code/libs/gl3w/gl3w_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/gl3w/gl3w_gen.py -------------------------------------------------------------------------------- /code/libs/gl3w/src/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/gl3w/src/gl3w.c -------------------------------------------------------------------------------- /code/libs/glib/lib/gio-2.0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/glib/lib/gio-2.0.def -------------------------------------------------------------------------------- /code/libs/glib/lib/gio-2.0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/glib/lib/gio-2.0.lib -------------------------------------------------------------------------------- /code/libs/glib/lib/glib-2.0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/glib/lib/glib-2.0.def -------------------------------------------------------------------------------- /code/libs/glib/lib/glib-2.0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/glib/lib/glib-2.0.lib -------------------------------------------------------------------------------- /code/libs/jpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/README -------------------------------------------------------------------------------- /code/libs/jpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jaricom.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcapimin.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcapistd.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcarith.c -------------------------------------------------------------------------------- /code/libs/jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jccoefct.c -------------------------------------------------------------------------------- /code/libs/jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jccolor.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /code/libs/jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jchuff.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcinit.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcmainct.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcmarker.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcmaster.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcomapi.c -------------------------------------------------------------------------------- /code/libs/jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jconfig.h -------------------------------------------------------------------------------- /code/libs/jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcparam.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcprepct.c -------------------------------------------------------------------------------- /code/libs/jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jcsample.c -------------------------------------------------------------------------------- /code/libs/jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jctrans.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdapimin.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdapistd.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdarith.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdatadst.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdatasrc.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdcoefct.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdcolor.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdct.h -------------------------------------------------------------------------------- /code/libs/jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jddctmgr.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdhuff.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdinput.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdmainct.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdmarker.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdmaster.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdmerge.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdpostct.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdsample.c -------------------------------------------------------------------------------- /code/libs/jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jdtrans.c -------------------------------------------------------------------------------- /code/libs/jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jerror.c -------------------------------------------------------------------------------- /code/libs/jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jerror.h -------------------------------------------------------------------------------- /code/libs/jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jfdctflt.c -------------------------------------------------------------------------------- /code/libs/jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jfdctfst.c -------------------------------------------------------------------------------- /code/libs/jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jfdctint.c -------------------------------------------------------------------------------- /code/libs/jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jidctflt.c -------------------------------------------------------------------------------- /code/libs/jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jidctfst.c -------------------------------------------------------------------------------- /code/libs/jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jidctint.c -------------------------------------------------------------------------------- /code/libs/jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jinclude.h -------------------------------------------------------------------------------- /code/libs/jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jmemmgr.c -------------------------------------------------------------------------------- /code/libs/jpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jmemnobs.c -------------------------------------------------------------------------------- /code/libs/jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jmemsys.h -------------------------------------------------------------------------------- /code/libs/jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /code/libs/jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jpegint.h -------------------------------------------------------------------------------- /code/libs/jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jpeglib.h -------------------------------------------------------------------------------- /code/libs/jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jquant1.c -------------------------------------------------------------------------------- /code/libs/jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jquant2.c -------------------------------------------------------------------------------- /code/libs/jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jutils.c -------------------------------------------------------------------------------- /code/libs/jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/jpeg/jversion.h -------------------------------------------------------------------------------- /code/libs/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/COPYRIGHT -------------------------------------------------------------------------------- /code/libs/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/HISTORY -------------------------------------------------------------------------------- /code/libs/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/INSTALL -------------------------------------------------------------------------------- /code/libs/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/Makefile -------------------------------------------------------------------------------- /code/libs/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/README -------------------------------------------------------------------------------- /code/libs/lua/doc/amazon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/amazon.gif -------------------------------------------------------------------------------- /code/libs/lua/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/contents.html -------------------------------------------------------------------------------- /code/libs/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/cover.png -------------------------------------------------------------------------------- /code/libs/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/logo.gif -------------------------------------------------------------------------------- /code/libs/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/lua.1 -------------------------------------------------------------------------------- /code/libs/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/lua.css -------------------------------------------------------------------------------- /code/libs/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/lua.html -------------------------------------------------------------------------------- /code/libs/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/luac.1 -------------------------------------------------------------------------------- /code/libs/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/luac.html -------------------------------------------------------------------------------- /code/libs/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/manual.css -------------------------------------------------------------------------------- /code/libs/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/manual.html -------------------------------------------------------------------------------- /code/libs/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/doc/readme.html -------------------------------------------------------------------------------- /code/libs/lua/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/Makefile -------------------------------------------------------------------------------- /code/libs/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/README -------------------------------------------------------------------------------- /code/libs/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/all.c -------------------------------------------------------------------------------- /code/libs/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/lua.hpp -------------------------------------------------------------------------------- /code/libs/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/lua.ico -------------------------------------------------------------------------------- /code/libs/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/lua.pc -------------------------------------------------------------------------------- /code/libs/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/luavs.bat -------------------------------------------------------------------------------- /code/libs/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/min.c -------------------------------------------------------------------------------- /code/libs/lua/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/noparser.c -------------------------------------------------------------------------------- /code/libs/lua/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/etc/strict.lua -------------------------------------------------------------------------------- /code/libs/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/Makefile -------------------------------------------------------------------------------- /code/libs/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lapi.c -------------------------------------------------------------------------------- /code/libs/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lapi.h -------------------------------------------------------------------------------- /code/libs/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lauxlib.c -------------------------------------------------------------------------------- /code/libs/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lauxlib.h -------------------------------------------------------------------------------- /code/libs/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lbaselib.c -------------------------------------------------------------------------------- /code/libs/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lcode.c -------------------------------------------------------------------------------- /code/libs/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lcode.h -------------------------------------------------------------------------------- /code/libs/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ldblib.c -------------------------------------------------------------------------------- /code/libs/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ldebug.c -------------------------------------------------------------------------------- /code/libs/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ldebug.h -------------------------------------------------------------------------------- /code/libs/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ldo.c -------------------------------------------------------------------------------- /code/libs/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ldo.h -------------------------------------------------------------------------------- /code/libs/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ldump.c -------------------------------------------------------------------------------- /code/libs/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lfunc.c -------------------------------------------------------------------------------- /code/libs/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lfunc.h -------------------------------------------------------------------------------- /code/libs/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lgc.c -------------------------------------------------------------------------------- /code/libs/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lgc.h -------------------------------------------------------------------------------- /code/libs/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/linit.c -------------------------------------------------------------------------------- /code/libs/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/liolib.c -------------------------------------------------------------------------------- /code/libs/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/llex.c -------------------------------------------------------------------------------- /code/libs/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/llex.h -------------------------------------------------------------------------------- /code/libs/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/llimits.h -------------------------------------------------------------------------------- /code/libs/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lmathlib.c -------------------------------------------------------------------------------- /code/libs/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lmem.c -------------------------------------------------------------------------------- /code/libs/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lmem.h -------------------------------------------------------------------------------- /code/libs/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/loadlib.c -------------------------------------------------------------------------------- /code/libs/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lobject.c -------------------------------------------------------------------------------- /code/libs/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lobject.h -------------------------------------------------------------------------------- /code/libs/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lopcodes.c -------------------------------------------------------------------------------- /code/libs/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lopcodes.h -------------------------------------------------------------------------------- /code/libs/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/loslib.c -------------------------------------------------------------------------------- /code/libs/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lparser.c -------------------------------------------------------------------------------- /code/libs/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lparser.h -------------------------------------------------------------------------------- /code/libs/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lstate.c -------------------------------------------------------------------------------- /code/libs/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lstate.h -------------------------------------------------------------------------------- /code/libs/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lstring.c -------------------------------------------------------------------------------- /code/libs/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lstring.h -------------------------------------------------------------------------------- /code/libs/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lstrlib.c -------------------------------------------------------------------------------- /code/libs/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ltable.c -------------------------------------------------------------------------------- /code/libs/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ltable.h -------------------------------------------------------------------------------- /code/libs/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ltablib.c -------------------------------------------------------------------------------- /code/libs/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ltm.c -------------------------------------------------------------------------------- /code/libs/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/ltm.h -------------------------------------------------------------------------------- /code/libs/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lua.c -------------------------------------------------------------------------------- /code/libs/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lua.h -------------------------------------------------------------------------------- /code/libs/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/luac.c -------------------------------------------------------------------------------- /code/libs/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/luaconf.h -------------------------------------------------------------------------------- /code/libs/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lualib.h -------------------------------------------------------------------------------- /code/libs/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lundump.c -------------------------------------------------------------------------------- /code/libs/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lundump.h -------------------------------------------------------------------------------- /code/libs/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lvm.c -------------------------------------------------------------------------------- /code/libs/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lvm.h -------------------------------------------------------------------------------- /code/libs/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lzio.c -------------------------------------------------------------------------------- /code/libs/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/lzio.h -------------------------------------------------------------------------------- /code/libs/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/src/print.c -------------------------------------------------------------------------------- /code/libs/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/README -------------------------------------------------------------------------------- /code/libs/lua/test/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/bisect.lua -------------------------------------------------------------------------------- /code/libs/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/cf.lua -------------------------------------------------------------------------------- /code/libs/lua/test/echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/echo.lua -------------------------------------------------------------------------------- /code/libs/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/env.lua -------------------------------------------------------------------------------- /code/libs/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/fib.lua -------------------------------------------------------------------------------- /code/libs/lua/test/fibfor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/fibfor.lua -------------------------------------------------------------------------------- /code/libs/lua/test/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/globals.lua -------------------------------------------------------------------------------- /code/libs/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/life.lua -------------------------------------------------------------------------------- /code/libs/lua/test/luac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/luac.lua -------------------------------------------------------------------------------- /code/libs/lua/test/printf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/printf.lua -------------------------------------------------------------------------------- /code/libs/lua/test/readonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/readonly.lua -------------------------------------------------------------------------------- /code/libs/lua/test/sieve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/sieve.lua -------------------------------------------------------------------------------- /code/libs/lua/test/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/sort.lua -------------------------------------------------------------------------------- /code/libs/lua/test/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/table.lua -------------------------------------------------------------------------------- /code/libs/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/lua/test/xd.lua -------------------------------------------------------------------------------- /code/libs/ogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/AUTHORS -------------------------------------------------------------------------------- /code/libs/ogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/CHANGES -------------------------------------------------------------------------------- /code/libs/ogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/COPYING -------------------------------------------------------------------------------- /code/libs/ogg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/README -------------------------------------------------------------------------------- /code/libs/ogg/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/configure.in -------------------------------------------------------------------------------- /code/libs/ogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /code/libs/ogg/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/src/Makefile.am -------------------------------------------------------------------------------- /code/libs/ogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/src/bitwise.c -------------------------------------------------------------------------------- /code/libs/ogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/ogg/src/framing.c -------------------------------------------------------------------------------- /code/libs/openal/include/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openal/include/al.h -------------------------------------------------------------------------------- /code/libs/openal/include/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openal/include/alc.h -------------------------------------------------------------------------------- /code/libs/openal/include/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openal/include/efx.h -------------------------------------------------------------------------------- /code/libs/openal/include/xram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openal/include/xram.h -------------------------------------------------------------------------------- /code/libs/openexr/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/AUTHORS -------------------------------------------------------------------------------- /code/libs/openexr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/COPYING -------------------------------------------------------------------------------- /code/libs/openexr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/LICENSE -------------------------------------------------------------------------------- /code/libs/openexr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/README -------------------------------------------------------------------------------- /code/libs/openexr/eLut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/eLut.h -------------------------------------------------------------------------------- /code/libs/openexr/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/half.cpp -------------------------------------------------------------------------------- /code/libs/openexr/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/half.h -------------------------------------------------------------------------------- /code/libs/openexr/halfLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/halfLimits.h -------------------------------------------------------------------------------- /code/libs/openexr/toFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/openexr/toFloat.h -------------------------------------------------------------------------------- /code/libs/picomodel/lwo/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/lwo/clip.c -------------------------------------------------------------------------------- /code/libs/picomodel/lwo/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/lwo/list.c -------------------------------------------------------------------------------- /code/libs/picomodel/lwo/lwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/lwo/lwio.c -------------------------------------------------------------------------------- /code/libs/picomodel/lwo/lwo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/lwo/lwo2.c -------------------------------------------------------------------------------- /code/libs/picomodel/lwo/lwo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/lwo/lwo2.h -------------------------------------------------------------------------------- /code/libs/picomodel/lwo/lwob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/lwo/lwob.c -------------------------------------------------------------------------------- /code/libs/picomodel/lwo/vmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/lwo/vmap.c -------------------------------------------------------------------------------- /code/libs/picomodel/picomodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/picomodel.c -------------------------------------------------------------------------------- /code/libs/picomodel/picomodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/picomodel.h -------------------------------------------------------------------------------- /code/libs/picomodel/pm_3ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_3ds.c -------------------------------------------------------------------------------- /code/libs/picomodel/pm_ase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_ase.c -------------------------------------------------------------------------------- /code/libs/picomodel/pm_fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_fm.c -------------------------------------------------------------------------------- /code/libs/picomodel/pm_fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_fm.h -------------------------------------------------------------------------------- /code/libs/picomodel/pm_lwo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_lwo.c -------------------------------------------------------------------------------- /code/libs/picomodel/pm_md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_md2.c -------------------------------------------------------------------------------- /code/libs/picomodel/pm_md3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_md3.c -------------------------------------------------------------------------------- /code/libs/picomodel/pm_mdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_mdc.c -------------------------------------------------------------------------------- /code/libs/picomodel/pm_ms3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_ms3d.c -------------------------------------------------------------------------------- /code/libs/picomodel/pm_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/picomodel/pm_obj.c -------------------------------------------------------------------------------- /code/libs/png/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/ANNOUNCE -------------------------------------------------------------------------------- /code/libs/png/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/CHANGES -------------------------------------------------------------------------------- /code/libs/png/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/INSTALL -------------------------------------------------------------------------------- /code/libs/png/KNOWNBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/KNOWNBUG -------------------------------------------------------------------------------- /code/libs/png/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/LICENSE -------------------------------------------------------------------------------- /code/libs/png/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/README -------------------------------------------------------------------------------- /code/libs/png/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/TODO -------------------------------------------------------------------------------- /code/libs/png/Y2KINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/Y2KINFO -------------------------------------------------------------------------------- /code/libs/png/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/example.c -------------------------------------------------------------------------------- /code/libs/png/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/png.c -------------------------------------------------------------------------------- /code/libs/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/png.h -------------------------------------------------------------------------------- /code/libs/png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngconf.h -------------------------------------------------------------------------------- /code/libs/png/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngerror.c -------------------------------------------------------------------------------- /code/libs/png/pnggccrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pnggccrd.c -------------------------------------------------------------------------------- /code/libs/png/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngget.c -------------------------------------------------------------------------------- /code/libs/png/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngmem.c -------------------------------------------------------------------------------- /code/libs/png/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngpread.c -------------------------------------------------------------------------------- /code/libs/png/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngread.c -------------------------------------------------------------------------------- /code/libs/png/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngrio.c -------------------------------------------------------------------------------- /code/libs/png/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngrtran.c -------------------------------------------------------------------------------- /code/libs/png/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngrutil.c -------------------------------------------------------------------------------- /code/libs/png/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngset.c -------------------------------------------------------------------------------- /code/libs/png/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngtrans.c -------------------------------------------------------------------------------- /code/libs/png/pngvcrd.c: -------------------------------------------------------------------------------- 1 | /* pnggvrd.c was removed from libpng-1.2.20. */ 2 | -------------------------------------------------------------------------------- /code/libs/png/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngwio.c -------------------------------------------------------------------------------- /code/libs/png/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngwrite.c -------------------------------------------------------------------------------- /code/libs/png/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngwtran.c -------------------------------------------------------------------------------- /code/libs/png/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/png/pngwutil.c -------------------------------------------------------------------------------- /code/libs/sdl2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/sdl2/include/SDL.h -------------------------------------------------------------------------------- /code/libs/sdl2/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/sdl2/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /code/libs/sdl2/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/sdl2/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /code/libs/sdl2/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/sdl2/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /code/libs/sdl2/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/sdl2/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /code/libs/speex/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/arch.h -------------------------------------------------------------------------------- /code/libs/speex/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/bits.c -------------------------------------------------------------------------------- /code/libs/speex/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/buffer.c -------------------------------------------------------------------------------- /code/libs/speex/cb_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/cb_search.c -------------------------------------------------------------------------------- /code/libs/speex/cb_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/cb_search.h -------------------------------------------------------------------------------- /code/libs/speex/cb_search_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/cb_search_sse.h -------------------------------------------------------------------------------- /code/libs/speex/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/config.h -------------------------------------------------------------------------------- /code/libs/speex/fftwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/fftwrap.c -------------------------------------------------------------------------------- /code/libs/speex/fftwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/fftwrap.h -------------------------------------------------------------------------------- /code/libs/speex/filterbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/filterbank.c -------------------------------------------------------------------------------- /code/libs/speex/filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/filterbank.h -------------------------------------------------------------------------------- /code/libs/speex/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/filters.c -------------------------------------------------------------------------------- /code/libs/speex/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/filters.h -------------------------------------------------------------------------------- /code/libs/speex/filters_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/filters_arm4.h -------------------------------------------------------------------------------- /code/libs/speex/filters_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/filters_bfin.h -------------------------------------------------------------------------------- /code/libs/speex/filters_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/filters_sse.h -------------------------------------------------------------------------------- /code/libs/speex/fixed_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/fixed_arm4.h -------------------------------------------------------------------------------- /code/libs/speex/fixed_arm5e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/fixed_arm5e.h -------------------------------------------------------------------------------- /code/libs/speex/fixed_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/fixed_bfin.h -------------------------------------------------------------------------------- /code/libs/speex/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/fixed_debug.h -------------------------------------------------------------------------------- /code/libs/speex/fixed_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/fixed_generic.h -------------------------------------------------------------------------------- /code/libs/speex/gain_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/gain_table.c -------------------------------------------------------------------------------- /code/libs/speex/hexc_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/hexc_table.c -------------------------------------------------------------------------------- /code/libs/speex/jitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/jitter.c -------------------------------------------------------------------------------- /code/libs/speex/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/kiss_fft.c -------------------------------------------------------------------------------- /code/libs/speex/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/kiss_fft.h -------------------------------------------------------------------------------- /code/libs/speex/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/kiss_fftr.c -------------------------------------------------------------------------------- /code/libs/speex/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/kiss_fftr.h -------------------------------------------------------------------------------- /code/libs/speex/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/lpc.h -------------------------------------------------------------------------------- /code/libs/speex/lpc_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/lpc_bfin.h -------------------------------------------------------------------------------- /code/libs/speex/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/lsp.h -------------------------------------------------------------------------------- /code/libs/speex/lsp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/lsp_bfin.h -------------------------------------------------------------------------------- /code/libs/speex/lsp_tables_nb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/lsp_tables_nb.c -------------------------------------------------------------------------------- /code/libs/speex/ltp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/ltp.c -------------------------------------------------------------------------------- /code/libs/speex/ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/ltp.h -------------------------------------------------------------------------------- /code/libs/speex/ltp_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/ltp_arm4.h -------------------------------------------------------------------------------- /code/libs/speex/ltp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/ltp_bfin.h -------------------------------------------------------------------------------- /code/libs/speex/ltp_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/ltp_sse.h -------------------------------------------------------------------------------- /code/libs/speex/math_approx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/math_approx.h -------------------------------------------------------------------------------- /code/libs/speex/mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/mdf.c -------------------------------------------------------------------------------- /code/libs/speex/misc_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/misc_bfin.h -------------------------------------------------------------------------------- /code/libs/speex/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/modes.c -------------------------------------------------------------------------------- /code/libs/speex/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/modes.h -------------------------------------------------------------------------------- /code/libs/speex/modes_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/modes_wb.c -------------------------------------------------------------------------------- /code/libs/speex/nb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/nb_celp.c -------------------------------------------------------------------------------- /code/libs/speex/nb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/nb_celp.h -------------------------------------------------------------------------------- /code/libs/speex/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/os_support.h -------------------------------------------------------------------------------- /code/libs/speex/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/preprocess.c -------------------------------------------------------------------------------- /code/libs/speex/pseudofloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/pseudofloat.h -------------------------------------------------------------------------------- /code/libs/speex/quant_lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/quant_lsp.c -------------------------------------------------------------------------------- /code/libs/speex/quant_lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/quant_lsp.h -------------------------------------------------------------------------------- /code/libs/speex/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/resample.c -------------------------------------------------------------------------------- /code/libs/speex/sb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/sb_celp.c -------------------------------------------------------------------------------- /code/libs/speex/sb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/sb_celp.h -------------------------------------------------------------------------------- /code/libs/speex/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/smallft.h -------------------------------------------------------------------------------- /code/libs/speex/speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/speex.c -------------------------------------------------------------------------------- /code/libs/speex/speex_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/speex_header.c -------------------------------------------------------------------------------- /code/libs/speex/speex_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/speex_lpc.c -------------------------------------------------------------------------------- /code/libs/speex/speex_lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/speex_lsp.c -------------------------------------------------------------------------------- /code/libs/speex/speex_smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/speex_smallft.c -------------------------------------------------------------------------------- /code/libs/speex/speex_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/speex_window.c -------------------------------------------------------------------------------- /code/libs/speex/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/stack_alloc.h -------------------------------------------------------------------------------- /code/libs/speex/stereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/stereo.c -------------------------------------------------------------------------------- /code/libs/speex/testdenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/testdenoise.c -------------------------------------------------------------------------------- /code/libs/speex/testecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/testecho.c -------------------------------------------------------------------------------- /code/libs/speex/testenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/testenc.c -------------------------------------------------------------------------------- /code/libs/speex/testenc_uwb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/testenc_uwb.c -------------------------------------------------------------------------------- /code/libs/speex/testenc_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/testenc_wb.c -------------------------------------------------------------------------------- /code/libs/speex/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/vbr.c -------------------------------------------------------------------------------- /code/libs/speex/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/vbr.h -------------------------------------------------------------------------------- /code/libs/speex/vorbis_psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/vorbis_psy.h -------------------------------------------------------------------------------- /code/libs/speex/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/vq.c -------------------------------------------------------------------------------- /code/libs/speex/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/vq.h -------------------------------------------------------------------------------- /code/libs/speex/vq_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/vq_arm4.h -------------------------------------------------------------------------------- /code/libs/speex/vq_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/vq_bfin.h -------------------------------------------------------------------------------- /code/libs/speex/vq_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/speex/vq_sse.h -------------------------------------------------------------------------------- /code/libs/theora/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/AUTHORS -------------------------------------------------------------------------------- /code/libs/theora/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/CHANGES -------------------------------------------------------------------------------- /code/libs/theora/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/COPYING -------------------------------------------------------------------------------- /code/libs/theora/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/LICENSE -------------------------------------------------------------------------------- /code/libs/theora/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/README -------------------------------------------------------------------------------- /code/libs/theora/lib/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/cpu.c -------------------------------------------------------------------------------- /code/libs/theora/lib/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/cpu.h -------------------------------------------------------------------------------- /code/libs/theora/lib/dec/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/dec/dct.h -------------------------------------------------------------------------------- /code/libs/theora/lib/dec/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/dec/idct.c -------------------------------------------------------------------------------- /code/libs/theora/lib/dec/idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/dec/idct.h -------------------------------------------------------------------------------- /code/libs/theora/lib/enc/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/enc/dct.c -------------------------------------------------------------------------------- /code/libs/theora/lib/enc/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/enc/dsp.c -------------------------------------------------------------------------------- /code/libs/theora/lib/enc/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/enc/dsp.h -------------------------------------------------------------------------------- /code/libs/theora/lib/enc/pb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/enc/pb.c -------------------------------------------------------------------------------- /code/libs/theora/lib/enc/pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/enc/pp.c -------------------------------------------------------------------------------- /code/libs/theora/lib/enc/pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/enc/pp.h -------------------------------------------------------------------------------- /code/libs/theora/lib/enc/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/enc/scan.c -------------------------------------------------------------------------------- /code/libs/theora/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/theora/lib/internal.h -------------------------------------------------------------------------------- /code/libs/vorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/AUTHORS -------------------------------------------------------------------------------- /code/libs/vorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/COPYING -------------------------------------------------------------------------------- /code/libs/vorbis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/README -------------------------------------------------------------------------------- /code/libs/vorbis/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/configure.in -------------------------------------------------------------------------------- /code/libs/vorbis/lib/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/analysis.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/backends.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/bitrate.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/bitrate.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/block.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/codebook.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/codebook.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/envelope.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/envelope.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/floor0.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/floor1.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/info.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/lookup.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/lookup.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/lpc.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/lpc.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/lsp.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/lsp.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/mapping0.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/masking.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/mdct.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/mdct.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/misc.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/os.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/psy.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/psy.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/registry.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/registry.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/res0.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/scales.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/smallft.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/smallft.h -------------------------------------------------------------------------------- /code/libs/vorbis/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/window.c -------------------------------------------------------------------------------- /code/libs/vorbis/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/vorbis/lib/window.h -------------------------------------------------------------------------------- /code/libs/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/ChangeLog -------------------------------------------------------------------------------- /code/libs/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/FAQ -------------------------------------------------------------------------------- /code/libs/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/INDEX -------------------------------------------------------------------------------- /code/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/Makefile -------------------------------------------------------------------------------- /code/libs/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/README -------------------------------------------------------------------------------- /code/libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/adler32.c -------------------------------------------------------------------------------- /code/libs/zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/algorithm.txt -------------------------------------------------------------------------------- /code/libs/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/compress.c -------------------------------------------------------------------------------- /code/libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/crc32.c -------------------------------------------------------------------------------- /code/libs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/crc32.h -------------------------------------------------------------------------------- /code/libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/deflate.c -------------------------------------------------------------------------------- /code/libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/deflate.h -------------------------------------------------------------------------------- /code/libs/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/gzio.c -------------------------------------------------------------------------------- /code/libs/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/infback.c -------------------------------------------------------------------------------- /code/libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/inffast.c -------------------------------------------------------------------------------- /code/libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/inffast.h -------------------------------------------------------------------------------- /code/libs/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/inffixed.h -------------------------------------------------------------------------------- /code/libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/inflate.c -------------------------------------------------------------------------------- /code/libs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/inflate.h -------------------------------------------------------------------------------- /code/libs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/inftrees.c -------------------------------------------------------------------------------- /code/libs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/inftrees.h -------------------------------------------------------------------------------- /code/libs/zlib/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/ioapi.c -------------------------------------------------------------------------------- /code/libs/zlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/ioapi.h -------------------------------------------------------------------------------- /code/libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/trees.c -------------------------------------------------------------------------------- /code/libs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/trees.h -------------------------------------------------------------------------------- /code/libs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/uncompr.c -------------------------------------------------------------------------------- /code/libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/zconf.h -------------------------------------------------------------------------------- /code/libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/zlib.h -------------------------------------------------------------------------------- /code/libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/zutil.c -------------------------------------------------------------------------------- /code/libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/libs/zlib/zutil.h -------------------------------------------------------------------------------- /code/movalike-rbquake3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/movalike-rbquake3.sh -------------------------------------------------------------------------------- /code/premake/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/premake/premake5.exe -------------------------------------------------------------------------------- /code/premake/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/premake/premake5.lua -------------------------------------------------------------------------------- /code/shared/bg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/bg_public.h -------------------------------------------------------------------------------- /code/shared/botshared/be_aas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/botshared/be_aas.h -------------------------------------------------------------------------------- /code/shared/botshared/be_ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/botshared/be_ea.h -------------------------------------------------------------------------------- /code/shared/botshared/botlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/botshared/botlib.h -------------------------------------------------------------------------------- /code/shared/cg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/cg_public.h -------------------------------------------------------------------------------- /code/shared/g_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/g_public.h -------------------------------------------------------------------------------- /code/shared/keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/keycodes.h -------------------------------------------------------------------------------- /code/shared/q_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/q_math.c -------------------------------------------------------------------------------- /code/shared/q_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/q_platform.h -------------------------------------------------------------------------------- /code/shared/q_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/q_shared.c -------------------------------------------------------------------------------- /code/shared/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/q_shared.h -------------------------------------------------------------------------------- /code/shared/surfaceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/surfaceflags.h -------------------------------------------------------------------------------- /code/shared/tr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/tr_types.h -------------------------------------------------------------------------------- /code/shared/ui_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/shared/ui_public.h -------------------------------------------------------------------------------- /code/tools/common/aselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/aselib.c -------------------------------------------------------------------------------- /code/tools/common/aselib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/aselib.h -------------------------------------------------------------------------------- /code/tools/common/bspfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/bspfile.c -------------------------------------------------------------------------------- /code/tools/common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/bspfile.h -------------------------------------------------------------------------------- /code/tools/common/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/cmdlib.c -------------------------------------------------------------------------------- /code/tools/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/cmdlib.h -------------------------------------------------------------------------------- /code/tools/common/imagelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/imagelib.c -------------------------------------------------------------------------------- /code/tools/common/imagelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/imagelib.h -------------------------------------------------------------------------------- /code/tools/common/inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/inout.c -------------------------------------------------------------------------------- /code/tools/common/inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/inout.h -------------------------------------------------------------------------------- /code/tools/common/l3dslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/l3dslib.c -------------------------------------------------------------------------------- /code/tools/common/l3dslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/l3dslib.h -------------------------------------------------------------------------------- /code/tools/common/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/mathlib.c -------------------------------------------------------------------------------- /code/tools/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/mathlib.h -------------------------------------------------------------------------------- /code/tools/common/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/mutex.c -------------------------------------------------------------------------------- /code/tools/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/mutex.h -------------------------------------------------------------------------------- /code/tools/common/netlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/netlib.c -------------------------------------------------------------------------------- /code/tools/common/netlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/netlib.h -------------------------------------------------------------------------------- /code/tools/common/polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/polylib.c -------------------------------------------------------------------------------- /code/tools/common/polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/polylib.h -------------------------------------------------------------------------------- /code/tools/common/polyset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/polyset.h -------------------------------------------------------------------------------- /code/tools/common/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/qfiles.h -------------------------------------------------------------------------------- /code/tools/common/scriplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/scriplib.c -------------------------------------------------------------------------------- /code/tools/common/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/scriplib.h -------------------------------------------------------------------------------- /code/tools/common/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/threads.c -------------------------------------------------------------------------------- /code/tools/common/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/threads.h -------------------------------------------------------------------------------- /code/tools/common/trilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/trilib.c -------------------------------------------------------------------------------- /code/tools/common/trilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/trilib.h -------------------------------------------------------------------------------- /code/tools/common/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/unzip.c -------------------------------------------------------------------------------- /code/tools/common/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/unzip.h -------------------------------------------------------------------------------- /code/tools/common/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/vfs.c -------------------------------------------------------------------------------- /code/tools/common/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/common/vfs.h -------------------------------------------------------------------------------- /code/tools/master/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/master/common.h -------------------------------------------------------------------------------- /code/tools/master/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/master/master.c -------------------------------------------------------------------------------- /code/tools/master/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/master/messages.c -------------------------------------------------------------------------------- /code/tools/master/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/master/messages.h -------------------------------------------------------------------------------- /code/tools/master/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/master/premake4.lua -------------------------------------------------------------------------------- /code/tools/master/servers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/master/servers.c -------------------------------------------------------------------------------- /code/tools/master/servers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/master/servers.h -------------------------------------------------------------------------------- /code/tools/xmap/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/brush.c -------------------------------------------------------------------------------- /code/tools/xmap/brush_primit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/brush_primit.c -------------------------------------------------------------------------------- /code/tools/xmap/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/bsp.c -------------------------------------------------------------------------------- /code/tools/xmap/convert_ase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/convert_ase.c -------------------------------------------------------------------------------- /code/tools/xmap/convert_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/convert_map.c -------------------------------------------------------------------------------- /code/tools/xmap/facebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/facebsp.c -------------------------------------------------------------------------------- /code/tools/xmap/fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/fog.c -------------------------------------------------------------------------------- /code/tools/xmap/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/gldraw.c -------------------------------------------------------------------------------- /code/tools/xmap/glfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/glfile.c -------------------------------------------------------------------------------- /code/tools/xmap/leakfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/leakfile.c -------------------------------------------------------------------------------- /code/tools/xmap/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/light.c -------------------------------------------------------------------------------- /code/tools/xmap/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/light.h -------------------------------------------------------------------------------- /code/tools/xmap/light_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/light_trace.c -------------------------------------------------------------------------------- /code/tools/xmap/lightmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/lightmaps.c -------------------------------------------------------------------------------- /code/tools/xmap/lightv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/lightv.c -------------------------------------------------------------------------------- /code/tools/xmap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/main.c -------------------------------------------------------------------------------- /code/tools/xmap/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/map.c -------------------------------------------------------------------------------- /code/tools/xmap/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/mesh.c -------------------------------------------------------------------------------- /code/tools/xmap/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/mesh.h -------------------------------------------------------------------------------- /code/tools/xmap/misc_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/misc_model.c -------------------------------------------------------------------------------- /code/tools/xmap/nodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/nodraw.c -------------------------------------------------------------------------------- /code/tools/xmap/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/patch.c -------------------------------------------------------------------------------- /code/tools/xmap/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/portals.c -------------------------------------------------------------------------------- /code/tools/xmap/prtfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/prtfile.c -------------------------------------------------------------------------------- /code/tools/xmap/qbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/qbsp.h -------------------------------------------------------------------------------- /code/tools/xmap/shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/shaders.c -------------------------------------------------------------------------------- /code/tools/xmap/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/shaders.h -------------------------------------------------------------------------------- /code/tools/xmap/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/surface.c -------------------------------------------------------------------------------- /code/tools/xmap/terrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/terrain.c -------------------------------------------------------------------------------- /code/tools/xmap/tjunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/tjunction.c -------------------------------------------------------------------------------- /code/tools/xmap/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/tree.c -------------------------------------------------------------------------------- /code/tools/xmap/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/vis.c -------------------------------------------------------------------------------- /code/tools/xmap/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/vis.h -------------------------------------------------------------------------------- /code/tools/xmap/visflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/visflow.c -------------------------------------------------------------------------------- /code/tools/xmap/writebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/writebsp.c -------------------------------------------------------------------------------- /code/tools/xmap/xmap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/xmap.sln -------------------------------------------------------------------------------- /code/tools/xmap/xmap.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap/xmap.vcproj -------------------------------------------------------------------------------- /code/tools/xmap2/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/brush.c -------------------------------------------------------------------------------- /code/tools/xmap2/brush_primit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/brush_primit.c -------------------------------------------------------------------------------- /code/tools/xmap2/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/bsp.c -------------------------------------------------------------------------------- /code/tools/xmap2/bspfile_ibsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/bspfile_ibsp.c -------------------------------------------------------------------------------- /code/tools/xmap2/bspfile_rbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/bspfile_rbsp.c -------------------------------------------------------------------------------- /code/tools/xmap2/bspfile_xbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/bspfile_xbsp.c -------------------------------------------------------------------------------- /code/tools/xmap2/convert_ase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/convert_ase.c -------------------------------------------------------------------------------- /code/tools/xmap2/convert_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/convert_map.c -------------------------------------------------------------------------------- /code/tools/xmap2/decals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/decals.c -------------------------------------------------------------------------------- /code/tools/xmap2/facebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/facebsp.c -------------------------------------------------------------------------------- /code/tools/xmap2/fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/fog.c -------------------------------------------------------------------------------- /code/tools/xmap2/game_xreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/game_xreal.h -------------------------------------------------------------------------------- /code/tools/xmap2/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/gldraw.c -------------------------------------------------------------------------------- /code/tools/xmap2/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/image.c -------------------------------------------------------------------------------- /code/tools/xmap2/leakfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/leakfile.c -------------------------------------------------------------------------------- /code/tools/xmap2/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/light.c -------------------------------------------------------------------------------- /code/tools/xmap2/light_bounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/light_bounce.c -------------------------------------------------------------------------------- /code/tools/xmap2/light_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/light_trace.c -------------------------------------------------------------------------------- /code/tools/xmap2/light_ydnar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/light_ydnar.c -------------------------------------------------------------------------------- /code/tools/xmap2/listen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/listen.pl -------------------------------------------------------------------------------- /code/tools/xmap2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/main.c -------------------------------------------------------------------------------- /code/tools/xmap2/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/map.c -------------------------------------------------------------------------------- /code/tools/xmap2/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/mesh.c -------------------------------------------------------------------------------- /code/tools/xmap2/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/model.c -------------------------------------------------------------------------------- /code/tools/xmap2/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/patch.c -------------------------------------------------------------------------------- /code/tools/xmap2/path_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/path_init.c -------------------------------------------------------------------------------- /code/tools/xmap2/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/portals.c -------------------------------------------------------------------------------- /code/tools/xmap2/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/premake4.lua -------------------------------------------------------------------------------- /code/tools/xmap2/prtfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/prtfile.c -------------------------------------------------------------------------------- /code/tools/xmap2/q3map2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/q3map2.h -------------------------------------------------------------------------------- /code/tools/xmap2/shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/shaders.c -------------------------------------------------------------------------------- /code/tools/xmap2/surface_fur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/surface_fur.c -------------------------------------------------------------------------------- /code/tools/xmap2/surface_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/surface_meta.c -------------------------------------------------------------------------------- /code/tools/xmap2/tjunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/tjunction.c -------------------------------------------------------------------------------- /code/tools/xmap2/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/tree.c -------------------------------------------------------------------------------- /code/tools/xmap2/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/vis.c -------------------------------------------------------------------------------- /code/tools/xmap2/visflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/visflow.c -------------------------------------------------------------------------------- /code/tools/xmap2/writebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/writebsp.c -------------------------------------------------------------------------------- /code/tools/xmap2/xmap2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/xmap2.ico -------------------------------------------------------------------------------- /code/tools/xmap2/xmap2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/code/tools/xmap2/xmap2.rc -------------------------------------------------------------------------------- /docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /docs/CODINGSTYLE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/CODINGSTYLE.txt -------------------------------------------------------------------------------- /docs/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /docs/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/COPYING.txt -------------------------------------------------------------------------------- /docs/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/GPL.txt -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/TODO.txt -------------------------------------------------------------------------------- /docs/ioquake3_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/ioquake3_logo.png -------------------------------------------------------------------------------- /docs/ql-mouse-accel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/ql-mouse-accel.txt -------------------------------------------------------------------------------- /docs/xreal_scrnshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertBeckebans/RBQUAKE-3/HEAD/docs/xreal_scrnshot.jpg --------------------------------------------------------------------------------