├── .flake8 ├── .gitattributes ├── .github └── workflows │ ├── build-wheels.yml │ ├── read_deps.py │ ├── run-tests.yml │ └── run-tools.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── dev └── structs │ ├── __init__.py │ └── static_prop.py ├── docs-requirements.txt ├── docs ├── Makefile ├── check_api.py ├── make.bat └── source │ ├── _static │ └── css │ │ └── custom.css │ ├── changelog.rst │ ├── conf.py │ ├── deprecations.rst │ ├── enum_class.py │ ├── index.rst │ ├── missing_refs.py │ └── modules │ ├── binformat.rst │ ├── bsp.rst │ ├── choreo.rst │ ├── cmdseq.rst │ ├── const.rst │ ├── dmx.rst │ ├── fgd.rst │ ├── filesys.rst │ ├── game.rst │ ├── geometry.rst │ ├── instancing.rst │ ├── keyvalues.rst │ ├── logger.rst │ ├── math.rst │ ├── mdl.rst │ ├── packlist.rst │ ├── particles.rst │ ├── run.rst │ ├── smd.rst │ ├── sndscape.rst │ ├── sndscript.rst │ ├── srctools.rst │ ├── steam.rst │ ├── surfaceprop.rst │ ├── tokenizer.rst │ ├── types.rst │ ├── vmf.rst │ ├── vmt.rst │ ├── vpk.rst │ └── vtf.rst ├── examples └── keyvalues.py ├── meson.build ├── meson.options ├── pyproject.toml ├── src ├── libsquish │ ├── LICENSE.txt │ ├── README.txt │ ├── alpha.cpp │ ├── alpha.h │ ├── clusterfit.cpp │ ├── clusterfit.h │ ├── colourblock.cpp │ ├── colourblock.h │ ├── colourfit.cpp │ ├── colourfit.h │ ├── colourset.cpp │ ├── colourset.h │ ├── config │ ├── config.h │ ├── libsquish.pc.in │ ├── maths.cpp │ ├── maths.h │ ├── rangefit.cpp │ ├── rangefit.h │ ├── simd.h │ ├── simd_float.h │ ├── simd_sse.h │ ├── simd_ve.h │ ├── singlecolourfit.cpp │ ├── singlecolourfit.h │ ├── singlecolourlookup.inl │ ├── squish.cpp │ └── squish.h └── srctools │ ├── __init__.py │ ├── _class_resources.py │ ├── _cy_vtf_readwrite.pyx │ ├── _engine_db.py │ ├── _fgd_helpers.py │ ├── _math.pxd │ ├── _math.pyx │ ├── _math_matrix.cpp │ ├── _math_matrix.h │ ├── _points_map.py │ ├── _py_vtf_readwrite.py │ ├── _pyinstaller │ ├── __init__.py │ ├── hook-srctools.py │ └── meson.build │ ├── _shaderdb.py │ ├── _tokenizer.pyx │ ├── binformat.py │ ├── bsp.py │ ├── choreo.py │ ├── cmdseq.py │ ├── const.py │ ├── dmx.py │ ├── fgd.lzma │ ├── fgd.py │ ├── filesys.py │ ├── game.py │ ├── geometry.py │ ├── instancing.py │ ├── keyvalues.py │ ├── logger.py │ ├── math.py │ ├── mdl.py │ ├── meson.build │ ├── packlist.py │ ├── particles.py │ ├── property_parser.py │ ├── py.typed │ ├── pythoncapi_compat.pxd │ ├── quickhull.pxd │ ├── run.py │ ├── scripts │ ├── __init__.py │ ├── build_scenes_image.py │ ├── collapse_manifest.py │ ├── diff.py │ ├── dump_parms.py │ ├── dump_proxies.py │ ├── find_deps.py │ ├── make_model_folders.py │ └── meson.build │ ├── smd.py │ ├── sndscape.py │ ├── sndscript.py │ ├── steam.py │ ├── surfaceprop.py │ ├── tokenizer.py │ ├── types.py │ ├── unicode_writer.h │ ├── vec.py │ ├── vmf.py │ ├── vmt.py │ ├── vpk.py │ └── vtf.py ├── test-requirements.txt ├── tests ├── gen_rot_vmf.py ├── helpers.py ├── instances │ └── rot_inst.vmf ├── ruff.toml ├── test_angles.py ├── test_binformat.py ├── test_bsp.py ├── test_bsp_entities.py ├── test_bsp_entities │ └── ent_lump.lmp ├── test_bsp_staticprops.py ├── test_bsp_staticprops │ ├── test_export_v10_.lmp │ ├── test_export_v11_.lmp │ ├── test_export_v4_.lmp │ ├── test_export_v5_.lmp │ ├── test_export_v6_.lmp │ ├── test_export_v7_.lmp │ ├── test_export_v8_.lmp │ ├── test_export_v9_.lmp │ ├── test_export_v_lightmap_mesa_.lmp │ ├── test_export_v_lightmap_v10_.lmp │ ├── test_export_v_lightmap_v7_.lmp │ ├── test_export_v_strata_v12_.lmp │ └── test_export_v_strata_v13_.lmp ├── test_choreo.py ├── test_choreo │ ├── sample.vcd │ ├── test_save_binary.bvcd │ └── test_save_text.vcd ├── test_class_resources.py ├── test_const.py ├── test_core.py ├── test_dmx.py ├── test_dmx │ ├── binary_v2.dmx │ ├── binary_v4.dmx │ ├── binary_v5.dmx │ ├── keyvalues2.dmx │ ├── kv2_long_header.dmx │ ├── remake_binary.bat │ ├── test_export_regression_binary_v1_.dmx │ ├── test_export_regression_binary_v2_.dmx │ ├── test_export_regression_binary_v3_.dmx │ ├── test_export_regression_binary_v4_.dmx │ ├── test_export_regression_binary_v5_.dmx │ ├── test_export_regression_text_flat_.dmx │ ├── test_export_regression_text_flat_cull_.dmx │ ├── test_export_regression_text_indent_.dmx │ ├── test_export_regression_text_indent_cull_.dmx │ ├── tf_movies.dmx │ └── tf_movies_text.dmx ├── test_fgd.py ├── test_fgd │ ├── parse_helpers_ext.fgd │ ├── parse_helpers_icon.fgd │ ├── parse_helpers_simple.fgd │ ├── parse_helpers_special.fgd │ ├── test_export_kvflags_new_custom_.fgd │ ├── test_export_kvflags_new_vanilla_.fgd │ ├── test_export_kvflags_old_custom_.fgd │ ├── test_export_kvflags_old_vanilla_.fgd │ ├── test_export_regressions_custom_.fgd │ ├── test_export_regressions_vanilla_.fgd │ ├── test_export_spawnflag_label_added_.fgd │ └── test_export_spawnflag_label_none_.fgd ├── test_geometry.py ├── test_geometry │ ├── carve_tests.vmf │ ├── cube_clip_down.vmf │ ├── cube_clip_east.vmf │ ├── cube_clip_north.vmf │ ├── cube_clip_south.vmf │ ├── cube_clip_up.vmf │ ├── cube_clip_west.vmf │ ├── test_carve.vmf │ └── test_merge.vmf ├── test_instancing.py ├── test_keyvalues.py ├── test_logger.py ├── test_logger │ └── test_logging_output.txt ├── test_matrix.py ├── test_packlist.py ├── test_particles.py ├── test_particles │ └── sample.pcf ├── test_points_map.py ├── test_rotations.py ├── test_rotations │ ├── rotation.txt │ └── rotation_test_gen.nut ├── test_smoke.py ├── test_sndscape.py ├── test_sndscape │ ├── sample_scape.txt │ └── test_roundtrip.txt ├── test_sndscript.py ├── test_sndscript │ ├── sound_loop.wav │ └── sound_noloop.wav ├── test_tokenizer.py ├── test_vec.py ├── test_vec │ ├── rot_main.bsp │ └── rot_main.vmf ├── test_vmf.py ├── test_vmf │ ├── test_blank_vmf.vmf │ └── test_regression.vmf ├── test_vmt.py ├── test_vmt │ └── test_export.vmt ├── test_vpk.py ├── test_vtf.py └── test_vtf │ ├── hotspot.vtf │ ├── sample_a8.vmt │ ├── sample_a8.vtf │ ├── sample_abgr8888.vmt │ ├── sample_abgr8888.vtf │ ├── sample_argb8888.vmt │ ├── sample_argb8888.vtf │ ├── sample_bgr565.vmt │ ├── sample_bgr565.vtf │ ├── sample_bgr888.vmt │ ├── sample_bgr888.vtf │ ├── sample_bgr888_bluescreen.vmt │ ├── sample_bgr888_bluescreen.vtf │ ├── sample_bgra4444.vmt │ ├── sample_bgra4444.vtf │ ├── sample_bgra5551.vmt │ ├── sample_bgra5551.vtf │ ├── sample_bgra8888.vmt │ ├── sample_bgra8888.vtf │ ├── sample_bgrx5551.vmt │ ├── sample_bgrx5551.vtf │ ├── sample_bgrx8888.vmt │ ├── sample_bgrx8888.vtf │ ├── sample_dxt1.vmt │ ├── sample_dxt1.vtf │ ├── sample_dxt1_onebitalpha.vmt │ ├── sample_dxt1_onebitalpha.vtf │ ├── sample_dxt3.vmt │ ├── sample_dxt3.vtf │ ├── sample_dxt5.vmt │ ├── sample_dxt5.vtf │ ├── sample_i8.vmt │ ├── sample_i8.vtf │ ├── sample_ia88.vmt │ ├── sample_ia88.vtf │ ├── sample_rgb565.vmt │ ├── sample_rgb565.vtf │ ├── sample_rgb888.vmt │ ├── sample_rgb888.vtf │ ├── sample_rgb888_bluescreen.vmt │ ├── sample_rgb888_bluescreen.vtf │ ├── sample_rgba888.vmt │ ├── sample_rgba888.vtf │ ├── sample_rgba8888.vmt │ ├── sample_rgba8888.vtf │ ├── sample_uv88.vmt │ ├── sample_uv88.vtf │ ├── sample_uvlx8888.vmt │ ├── sample_uvlx8888.vtf │ ├── sample_uvwq8888.vmt │ ├── sample_uvwq8888.vtf │ ├── test_load_cython_a8.png │ ├── test_load_cython_abgr8888.png │ ├── test_load_cython_argb8888.png │ ├── test_load_cython_bgr565.png │ ├── test_load_cython_bgr888.png │ ├── test_load_cython_bgr888_bluescreen.png │ ├── test_load_cython_bgra4444.png │ ├── test_load_cython_bgra5551.png │ ├── test_load_cython_bgra8888.png │ ├── test_load_cython_bgrx5551.png │ ├── test_load_cython_bgrx8888.png │ ├── test_load_cython_dxt1.png │ ├── test_load_cython_dxt1_onebitalpha.png │ ├── test_load_cython_dxt3.png │ ├── test_load_cython_dxt5.png │ ├── test_load_cython_i8.png │ ├── test_load_cython_ia88.png │ ├── test_load_cython_rgb565.png │ ├── test_load_cython_rgb888.png │ ├── test_load_cython_rgb888_bluescreen.png │ ├── test_load_cython_rgba8888.png │ ├── test_load_cython_uv88.png │ ├── test_load_cython_uvlx8888.png │ ├── test_load_cython_uvwq8888.png │ ├── test_load_python_a8.png │ ├── test_load_python_abgr8888.png │ ├── test_load_python_argb8888.png │ ├── test_load_python_bgr565.png │ ├── test_load_python_bgr888.png │ ├── test_load_python_bgr888_bluescreen.png │ ├── test_load_python_bgra4444.png │ ├── test_load_python_bgra5551.png │ ├── test_load_python_bgra8888.png │ ├── test_load_python_bgrx5551.png │ ├── test_load_python_bgrx8888.png │ ├── test_load_python_dxt1.png │ ├── test_load_python_dxt1_onebitalpha.png │ ├── test_load_python_dxt3.png │ ├── test_load_python_dxt5.png │ ├── test_load_python_i8.png │ ├── test_load_python_ia88.png │ ├── test_load_python_rgb565.png │ ├── test_load_python_rgb888.png │ ├── test_load_python_rgb888_bluescreen.png │ ├── test_load_python_rgba8888.png │ ├── test_load_python_uv88.png │ ├── test_load_python_uvlx8888.png │ ├── test_load_python_uvwq8888.png │ ├── test_mipmap_cython_bilinear.png │ ├── test_mipmap_cython_lower_left.png │ ├── test_mipmap_cython_lower_right.png │ ├── test_mipmap_cython_nearest.png │ ├── test_mipmap_cython_upper_right.png │ ├── test_mipmap_python_bilinear.png │ ├── test_mipmap_python_lower_left.png │ ├── test_mipmap_python_lower_right.png │ ├── test_mipmap_python_nearest.png │ ├── test_mipmap_python_upper_right.png │ ├── test_ppm_convert_cython_alpha.ppm │ ├── test_ppm_convert_cython_bg.ppm │ ├── test_ppm_convert_python_alpha.ppm │ ├── test_ppm_convert_python_bg.ppm │ ├── test_res_hotspot.vtf │ ├── test_save_cython_a8.vmt │ ├── test_save_cython_a8.vtf │ ├── test_save_cython_abgr8888.vmt │ ├── test_save_cython_abgr8888.vtf │ ├── test_save_cython_argb8888.vmt │ ├── test_save_cython_argb8888.vtf │ ├── test_save_cython_bgr565.vmt │ ├── test_save_cython_bgr565.vtf │ ├── test_save_cython_bgr888.vmt │ ├── test_save_cython_bgr888.vtf │ ├── test_save_cython_bgr888_bluescreen.vmt │ ├── test_save_cython_bgr888_bluescreen.vtf │ ├── test_save_cython_bgra4444.vmt │ ├── test_save_cython_bgra4444.vtf │ ├── test_save_cython_bgra5551.vmt │ ├── test_save_cython_bgra5551.vtf │ ├── test_save_cython_bgra8888.vmt │ ├── test_save_cython_bgra8888.vtf │ ├── test_save_cython_bgrx5551.vmt │ ├── test_save_cython_bgrx5551.vtf │ ├── test_save_cython_bgrx8888.vmt │ ├── test_save_cython_bgrx8888.vtf │ ├── test_save_cython_dxt1.vmt │ ├── test_save_cython_dxt1.vtf │ ├── test_save_cython_dxt1_onebitalpha.vmt │ ├── test_save_cython_dxt1_onebitalpha.vtf │ ├── test_save_cython_dxt3.vmt │ ├── test_save_cython_dxt3.vtf │ ├── test_save_cython_dxt5.vmt │ ├── test_save_cython_dxt5.vtf │ ├── test_save_cython_i8.vmt │ ├── test_save_cython_i8.vtf │ ├── test_save_cython_ia88.vmt │ ├── test_save_cython_ia88.vtf │ ├── test_save_cython_rgb565.vmt │ ├── test_save_cython_rgb565.vtf │ ├── test_save_cython_rgb888.vmt │ ├── test_save_cython_rgb888.vtf │ ├── test_save_cython_rgb888_bluescreen.vmt │ ├── test_save_cython_rgb888_bluescreen.vtf │ ├── test_save_cython_rgba8888.vmt │ ├── test_save_cython_rgba8888.vtf │ ├── test_save_cython_uv88.vmt │ ├── test_save_cython_uv88.vtf │ ├── test_save_cython_uvlx8888.vmt │ ├── test_save_cython_uvlx8888.vtf │ ├── test_save_cython_uvwq8888.vmt │ ├── test_save_cython_uvwq8888.vtf │ ├── test_save_python_a8.vmt │ ├── test_save_python_a8.vtf │ ├── test_save_python_abgr8888.vmt │ ├── test_save_python_abgr8888.vtf │ ├── test_save_python_argb8888.vmt │ ├── test_save_python_argb8888.vtf │ ├── test_save_python_bgr565.vmt │ ├── test_save_python_bgr565.vtf │ ├── test_save_python_bgr888.vmt │ ├── test_save_python_bgr888.vtf │ ├── test_save_python_bgr888_bluescreen.vmt │ ├── test_save_python_bgr888_bluescreen.vtf │ ├── test_save_python_bgra4444.vmt │ ├── test_save_python_bgra4444.vtf │ ├── test_save_python_bgra5551.vmt │ ├── test_save_python_bgra5551.vtf │ ├── test_save_python_bgra8888.vmt │ ├── test_save_python_bgra8888.vtf │ ├── test_save_python_bgrx5551.vmt │ ├── test_save_python_bgrx5551.vtf │ ├── test_save_python_bgrx8888.vmt │ ├── test_save_python_bgrx8888.vtf │ ├── test_save_python_i8.vmt │ ├── test_save_python_i8.vtf │ ├── test_save_python_ia88.vmt │ ├── test_save_python_ia88.vtf │ ├── test_save_python_rgb565.vmt │ ├── test_save_python_rgb565.vtf │ ├── test_save_python_rgb888.vmt │ ├── test_save_python_rgb888.vtf │ ├── test_save_python_rgb888_bluescreen.vmt │ ├── test_save_python_rgb888_bluescreen.vtf │ ├── test_save_python_rgba8888.vmt │ ├── test_save_python_rgba8888.vtf │ ├── test_save_python_uv88.vmt │ ├── test_save_python_uv88.vtf │ ├── test_save_python_uvlx8888.vmt │ ├── test_save_python_uvlx8888.vtf │ ├── test_save_python_uvwq8888.vmt │ └── test_save_python_uvwq8888.vtf ├── tool-requirements.txt ├── tox.ini └── type_tests ├── README.md ├── ruff.toml ├── typ_test_core.py ├── typ_test_math_ops.py └── typ_test_vmf.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.github/workflows/build-wheels.yml -------------------------------------------------------------------------------- /.github/workflows/read_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.github/workflows/read_deps.py -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/run-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.github/workflows/run-tools.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/README.md -------------------------------------------------------------------------------- /dev/structs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/dev/structs/__init__.py -------------------------------------------------------------------------------- /dev/structs/static_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/dev/structs/static_prop.py -------------------------------------------------------------------------------- /docs-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/check_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/check_api.py -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/deprecations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/deprecations.rst -------------------------------------------------------------------------------- /docs/source/enum_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/enum_class.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/missing_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/missing_refs.py -------------------------------------------------------------------------------- /docs/source/modules/binformat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/binformat.rst -------------------------------------------------------------------------------- /docs/source/modules/bsp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/bsp.rst -------------------------------------------------------------------------------- /docs/source/modules/choreo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/choreo.rst -------------------------------------------------------------------------------- /docs/source/modules/cmdseq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/cmdseq.rst -------------------------------------------------------------------------------- /docs/source/modules/const.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/const.rst -------------------------------------------------------------------------------- /docs/source/modules/dmx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/dmx.rst -------------------------------------------------------------------------------- /docs/source/modules/fgd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/fgd.rst -------------------------------------------------------------------------------- /docs/source/modules/filesys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/filesys.rst -------------------------------------------------------------------------------- /docs/source/modules/game.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/game.rst -------------------------------------------------------------------------------- /docs/source/modules/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/geometry.rst -------------------------------------------------------------------------------- /docs/source/modules/instancing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/instancing.rst -------------------------------------------------------------------------------- /docs/source/modules/keyvalues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/keyvalues.rst -------------------------------------------------------------------------------- /docs/source/modules/logger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/logger.rst -------------------------------------------------------------------------------- /docs/source/modules/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/math.rst -------------------------------------------------------------------------------- /docs/source/modules/mdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/mdl.rst -------------------------------------------------------------------------------- /docs/source/modules/packlist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/packlist.rst -------------------------------------------------------------------------------- /docs/source/modules/particles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/particles.rst -------------------------------------------------------------------------------- /docs/source/modules/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/run.rst -------------------------------------------------------------------------------- /docs/source/modules/smd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/smd.rst -------------------------------------------------------------------------------- /docs/source/modules/sndscape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/sndscape.rst -------------------------------------------------------------------------------- /docs/source/modules/sndscript.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/sndscript.rst -------------------------------------------------------------------------------- /docs/source/modules/srctools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/srctools.rst -------------------------------------------------------------------------------- /docs/source/modules/steam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/steam.rst -------------------------------------------------------------------------------- /docs/source/modules/surfaceprop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/surfaceprop.rst -------------------------------------------------------------------------------- /docs/source/modules/tokenizer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/tokenizer.rst -------------------------------------------------------------------------------- /docs/source/modules/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/types.rst -------------------------------------------------------------------------------- /docs/source/modules/vmf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/vmf.rst -------------------------------------------------------------------------------- /docs/source/modules/vmt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/vmt.rst -------------------------------------------------------------------------------- /docs/source/modules/vpk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/vpk.rst -------------------------------------------------------------------------------- /docs/source/modules/vtf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/docs/source/modules/vtf.rst -------------------------------------------------------------------------------- /examples/keyvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/examples/keyvalues.py -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/meson.build -------------------------------------------------------------------------------- /meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/meson.options -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/libsquish/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/LICENSE.txt -------------------------------------------------------------------------------- /src/libsquish/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/README.txt -------------------------------------------------------------------------------- /src/libsquish/alpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/alpha.cpp -------------------------------------------------------------------------------- /src/libsquish/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/alpha.h -------------------------------------------------------------------------------- /src/libsquish/clusterfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/clusterfit.cpp -------------------------------------------------------------------------------- /src/libsquish/clusterfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/clusterfit.h -------------------------------------------------------------------------------- /src/libsquish/colourblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/colourblock.cpp -------------------------------------------------------------------------------- /src/libsquish/colourblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/colourblock.h -------------------------------------------------------------------------------- /src/libsquish/colourfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/colourfit.cpp -------------------------------------------------------------------------------- /src/libsquish/colourfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/colourfit.h -------------------------------------------------------------------------------- /src/libsquish/colourset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/colourset.cpp -------------------------------------------------------------------------------- /src/libsquish/colourset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/colourset.h -------------------------------------------------------------------------------- /src/libsquish/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/config -------------------------------------------------------------------------------- /src/libsquish/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/config.h -------------------------------------------------------------------------------- /src/libsquish/libsquish.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/libsquish.pc.in -------------------------------------------------------------------------------- /src/libsquish/maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/maths.cpp -------------------------------------------------------------------------------- /src/libsquish/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/maths.h -------------------------------------------------------------------------------- /src/libsquish/rangefit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/rangefit.cpp -------------------------------------------------------------------------------- /src/libsquish/rangefit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/rangefit.h -------------------------------------------------------------------------------- /src/libsquish/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/simd.h -------------------------------------------------------------------------------- /src/libsquish/simd_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/simd_float.h -------------------------------------------------------------------------------- /src/libsquish/simd_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/simd_sse.h -------------------------------------------------------------------------------- /src/libsquish/simd_ve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/simd_ve.h -------------------------------------------------------------------------------- /src/libsquish/singlecolourfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/singlecolourfit.cpp -------------------------------------------------------------------------------- /src/libsquish/singlecolourfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/singlecolourfit.h -------------------------------------------------------------------------------- /src/libsquish/singlecolourlookup.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/singlecolourlookup.inl -------------------------------------------------------------------------------- /src/libsquish/squish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/squish.cpp -------------------------------------------------------------------------------- /src/libsquish/squish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/libsquish/squish.h -------------------------------------------------------------------------------- /src/srctools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/__init__.py -------------------------------------------------------------------------------- /src/srctools/_class_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_class_resources.py -------------------------------------------------------------------------------- /src/srctools/_cy_vtf_readwrite.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_cy_vtf_readwrite.pyx -------------------------------------------------------------------------------- /src/srctools/_engine_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_engine_db.py -------------------------------------------------------------------------------- /src/srctools/_fgd_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_fgd_helpers.py -------------------------------------------------------------------------------- /src/srctools/_math.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_math.pxd -------------------------------------------------------------------------------- /src/srctools/_math.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_math.pyx -------------------------------------------------------------------------------- /src/srctools/_math_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_math_matrix.cpp -------------------------------------------------------------------------------- /src/srctools/_math_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_math_matrix.h -------------------------------------------------------------------------------- /src/srctools/_points_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_points_map.py -------------------------------------------------------------------------------- /src/srctools/_py_vtf_readwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_py_vtf_readwrite.py -------------------------------------------------------------------------------- /src/srctools/_pyinstaller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_pyinstaller/__init__.py -------------------------------------------------------------------------------- /src/srctools/_pyinstaller/hook-srctools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_pyinstaller/hook-srctools.py -------------------------------------------------------------------------------- /src/srctools/_pyinstaller/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_pyinstaller/meson.build -------------------------------------------------------------------------------- /src/srctools/_shaderdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_shaderdb.py -------------------------------------------------------------------------------- /src/srctools/_tokenizer.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/_tokenizer.pyx -------------------------------------------------------------------------------- /src/srctools/binformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/binformat.py -------------------------------------------------------------------------------- /src/srctools/bsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/bsp.py -------------------------------------------------------------------------------- /src/srctools/choreo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/choreo.py -------------------------------------------------------------------------------- /src/srctools/cmdseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/cmdseq.py -------------------------------------------------------------------------------- /src/srctools/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/const.py -------------------------------------------------------------------------------- /src/srctools/dmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/dmx.py -------------------------------------------------------------------------------- /src/srctools/fgd.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/fgd.lzma -------------------------------------------------------------------------------- /src/srctools/fgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/fgd.py -------------------------------------------------------------------------------- /src/srctools/filesys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/filesys.py -------------------------------------------------------------------------------- /src/srctools/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/game.py -------------------------------------------------------------------------------- /src/srctools/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/geometry.py -------------------------------------------------------------------------------- /src/srctools/instancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/instancing.py -------------------------------------------------------------------------------- /src/srctools/keyvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/keyvalues.py -------------------------------------------------------------------------------- /src/srctools/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/logger.py -------------------------------------------------------------------------------- /src/srctools/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/math.py -------------------------------------------------------------------------------- /src/srctools/mdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/mdl.py -------------------------------------------------------------------------------- /src/srctools/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/meson.build -------------------------------------------------------------------------------- /src/srctools/packlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/packlist.py -------------------------------------------------------------------------------- /src/srctools/particles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/particles.py -------------------------------------------------------------------------------- /src/srctools/property_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/property_parser.py -------------------------------------------------------------------------------- /src/srctools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/srctools/pythoncapi_compat.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/pythoncapi_compat.pxd -------------------------------------------------------------------------------- /src/srctools/quickhull.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/quickhull.pxd -------------------------------------------------------------------------------- /src/srctools/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/run.py -------------------------------------------------------------------------------- /src/srctools/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/srctools/scripts/build_scenes_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/scripts/build_scenes_image.py -------------------------------------------------------------------------------- /src/srctools/scripts/collapse_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/scripts/collapse_manifest.py -------------------------------------------------------------------------------- /src/srctools/scripts/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/scripts/diff.py -------------------------------------------------------------------------------- /src/srctools/scripts/dump_parms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/scripts/dump_parms.py -------------------------------------------------------------------------------- /src/srctools/scripts/dump_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/scripts/dump_proxies.py -------------------------------------------------------------------------------- /src/srctools/scripts/find_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/scripts/find_deps.py -------------------------------------------------------------------------------- /src/srctools/scripts/make_model_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/scripts/make_model_folders.py -------------------------------------------------------------------------------- /src/srctools/scripts/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/scripts/meson.build -------------------------------------------------------------------------------- /src/srctools/smd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/smd.py -------------------------------------------------------------------------------- /src/srctools/sndscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/sndscape.py -------------------------------------------------------------------------------- /src/srctools/sndscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/sndscript.py -------------------------------------------------------------------------------- /src/srctools/steam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/steam.py -------------------------------------------------------------------------------- /src/srctools/surfaceprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/surfaceprop.py -------------------------------------------------------------------------------- /src/srctools/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/tokenizer.py -------------------------------------------------------------------------------- /src/srctools/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/types.py -------------------------------------------------------------------------------- /src/srctools/unicode_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/unicode_writer.h -------------------------------------------------------------------------------- /src/srctools/vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/vec.py -------------------------------------------------------------------------------- /src/srctools/vmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/vmf.py -------------------------------------------------------------------------------- /src/srctools/vmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/vmt.py -------------------------------------------------------------------------------- /src/srctools/vpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/vpk.py -------------------------------------------------------------------------------- /src/srctools/vtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/src/srctools/vtf.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/gen_rot_vmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/gen_rot_vmf.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/instances/rot_inst.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/instances/rot_inst.vmf -------------------------------------------------------------------------------- /tests/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/ruff.toml -------------------------------------------------------------------------------- /tests/test_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_angles.py -------------------------------------------------------------------------------- /tests/test_binformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_binformat.py -------------------------------------------------------------------------------- /tests/test_bsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp.py -------------------------------------------------------------------------------- /tests/test_bsp_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_entities.py -------------------------------------------------------------------------------- /tests/test_bsp_entities/ent_lump.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_entities/ent_lump.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops.py -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v10_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v10_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v11_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v11_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v4_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v4_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v5_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v5_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v6_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v6_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v7_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v7_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v8_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v8_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v9_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v9_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v_lightmap_mesa_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v_lightmap_mesa_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v_lightmap_v10_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v_lightmap_v10_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v_lightmap_v7_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v_lightmap_v7_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v_strata_v12_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v_strata_v12_.lmp -------------------------------------------------------------------------------- /tests/test_bsp_staticprops/test_export_v_strata_v13_.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_bsp_staticprops/test_export_v_strata_v13_.lmp -------------------------------------------------------------------------------- /tests/test_choreo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_choreo.py -------------------------------------------------------------------------------- /tests/test_choreo/sample.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_choreo/sample.vcd -------------------------------------------------------------------------------- /tests/test_choreo/test_save_binary.bvcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_choreo/test_save_binary.bvcd -------------------------------------------------------------------------------- /tests/test_choreo/test_save_text.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_choreo/test_save_text.vcd -------------------------------------------------------------------------------- /tests/test_class_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_class_resources.py -------------------------------------------------------------------------------- /tests/test_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_const.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_dmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx.py -------------------------------------------------------------------------------- /tests/test_dmx/binary_v2.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/binary_v2.dmx -------------------------------------------------------------------------------- /tests/test_dmx/binary_v4.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/binary_v4.dmx -------------------------------------------------------------------------------- /tests/test_dmx/binary_v5.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/binary_v5.dmx -------------------------------------------------------------------------------- /tests/test_dmx/keyvalues2.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/keyvalues2.dmx -------------------------------------------------------------------------------- /tests/test_dmx/kv2_long_header.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/kv2_long_header.dmx -------------------------------------------------------------------------------- /tests/test_dmx/remake_binary.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/remake_binary.bat -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_binary_v1_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_binary_v1_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_binary_v2_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_binary_v2_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_binary_v3_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_binary_v3_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_binary_v4_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_binary_v4_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_binary_v5_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_binary_v5_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_text_flat_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_text_flat_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_text_flat_cull_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_text_flat_cull_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_text_indent_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_text_indent_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/test_export_regression_text_indent_cull_.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/test_export_regression_text_indent_cull_.dmx -------------------------------------------------------------------------------- /tests/test_dmx/tf_movies.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/tf_movies.dmx -------------------------------------------------------------------------------- /tests/test_dmx/tf_movies_text.dmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_dmx/tf_movies_text.dmx -------------------------------------------------------------------------------- /tests/test_fgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd.py -------------------------------------------------------------------------------- /tests/test_fgd/parse_helpers_ext.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/parse_helpers_ext.fgd -------------------------------------------------------------------------------- /tests/test_fgd/parse_helpers_icon.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/parse_helpers_icon.fgd -------------------------------------------------------------------------------- /tests/test_fgd/parse_helpers_simple.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/parse_helpers_simple.fgd -------------------------------------------------------------------------------- /tests/test_fgd/parse_helpers_special.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/parse_helpers_special.fgd -------------------------------------------------------------------------------- /tests/test_fgd/test_export_kvflags_new_custom_.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/test_export_kvflags_new_custom_.fgd -------------------------------------------------------------------------------- /tests/test_fgd/test_export_kvflags_new_vanilla_.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/test_export_kvflags_new_vanilla_.fgd -------------------------------------------------------------------------------- /tests/test_fgd/test_export_kvflags_old_custom_.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/test_export_kvflags_old_custom_.fgd -------------------------------------------------------------------------------- /tests/test_fgd/test_export_kvflags_old_vanilla_.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/test_export_kvflags_old_vanilla_.fgd -------------------------------------------------------------------------------- /tests/test_fgd/test_export_regressions_custom_.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/test_export_regressions_custom_.fgd -------------------------------------------------------------------------------- /tests/test_fgd/test_export_regressions_vanilla_.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/test_export_regressions_vanilla_.fgd -------------------------------------------------------------------------------- /tests/test_fgd/test_export_spawnflag_label_added_.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/test_export_spawnflag_label_added_.fgd -------------------------------------------------------------------------------- /tests/test_fgd/test_export_spawnflag_label_none_.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_fgd/test_export_spawnflag_label_none_.fgd -------------------------------------------------------------------------------- /tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/test_geometry/carve_tests.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/carve_tests.vmf -------------------------------------------------------------------------------- /tests/test_geometry/cube_clip_down.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/cube_clip_down.vmf -------------------------------------------------------------------------------- /tests/test_geometry/cube_clip_east.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/cube_clip_east.vmf -------------------------------------------------------------------------------- /tests/test_geometry/cube_clip_north.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/cube_clip_north.vmf -------------------------------------------------------------------------------- /tests/test_geometry/cube_clip_south.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/cube_clip_south.vmf -------------------------------------------------------------------------------- /tests/test_geometry/cube_clip_up.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/cube_clip_up.vmf -------------------------------------------------------------------------------- /tests/test_geometry/cube_clip_west.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/cube_clip_west.vmf -------------------------------------------------------------------------------- /tests/test_geometry/test_carve.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/test_carve.vmf -------------------------------------------------------------------------------- /tests/test_geometry/test_merge.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_geometry/test_merge.vmf -------------------------------------------------------------------------------- /tests/test_instancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_instancing.py -------------------------------------------------------------------------------- /tests/test_keyvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_keyvalues.py -------------------------------------------------------------------------------- /tests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_logger.py -------------------------------------------------------------------------------- /tests/test_logger/test_logging_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_logger/test_logging_output.txt -------------------------------------------------------------------------------- /tests/test_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_matrix.py -------------------------------------------------------------------------------- /tests/test_packlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_packlist.py -------------------------------------------------------------------------------- /tests/test_particles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_particles.py -------------------------------------------------------------------------------- /tests/test_particles/sample.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_particles/sample.pcf -------------------------------------------------------------------------------- /tests/test_points_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_points_map.py -------------------------------------------------------------------------------- /tests/test_rotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_rotations.py -------------------------------------------------------------------------------- /tests/test_rotations/rotation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_rotations/rotation.txt -------------------------------------------------------------------------------- /tests/test_rotations/rotation_test_gen.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_rotations/rotation_test_gen.nut -------------------------------------------------------------------------------- /tests/test_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_smoke.py -------------------------------------------------------------------------------- /tests/test_sndscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_sndscape.py -------------------------------------------------------------------------------- /tests/test_sndscape/sample_scape.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_sndscape/sample_scape.txt -------------------------------------------------------------------------------- /tests/test_sndscape/test_roundtrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_sndscape/test_roundtrip.txt -------------------------------------------------------------------------------- /tests/test_sndscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_sndscript.py -------------------------------------------------------------------------------- /tests/test_sndscript/sound_loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_sndscript/sound_loop.wav -------------------------------------------------------------------------------- /tests/test_sndscript/sound_noloop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_sndscript/sound_noloop.wav -------------------------------------------------------------------------------- /tests/test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_tokenizer.py -------------------------------------------------------------------------------- /tests/test_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vec.py -------------------------------------------------------------------------------- /tests/test_vec/rot_main.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vec/rot_main.bsp -------------------------------------------------------------------------------- /tests/test_vec/rot_main.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vec/rot_main.vmf -------------------------------------------------------------------------------- /tests/test_vmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vmf.py -------------------------------------------------------------------------------- /tests/test_vmf/test_blank_vmf.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vmf/test_blank_vmf.vmf -------------------------------------------------------------------------------- /tests/test_vmf/test_regression.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vmf/test_regression.vmf -------------------------------------------------------------------------------- /tests/test_vmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vmt.py -------------------------------------------------------------------------------- /tests/test_vmt/test_export.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vmt/test_export.vmt -------------------------------------------------------------------------------- /tests/test_vpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vpk.py -------------------------------------------------------------------------------- /tests/test_vtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf.py -------------------------------------------------------------------------------- /tests/test_vtf/hotspot.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/hotspot.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_a8.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_a8.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_a8.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_a8.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_abgr8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_abgr8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_abgr8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_abgr8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_argb8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_argb8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_argb8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_argb8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgr565.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgr565.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgr565.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgr565.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgr888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgr888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgr888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgr888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgr888_bluescreen.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgr888_bluescreen.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgr888_bluescreen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgr888_bluescreen.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgra4444.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgra4444.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgra4444.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgra4444.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgra5551.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgra5551.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgra5551.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgra5551.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgra8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgra8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgra8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgra8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgrx5551.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgrx5551.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgrx5551.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgrx5551.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgrx8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgrx8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_bgrx8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_bgrx8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_dxt1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_dxt1.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_dxt1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_dxt1.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_dxt1_onebitalpha.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_dxt1_onebitalpha.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_dxt1_onebitalpha.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_dxt1_onebitalpha.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_dxt3.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_dxt3.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_dxt3.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_dxt3.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_dxt5.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_dxt5.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_dxt5.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_dxt5.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_i8.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_i8.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_i8.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_i8.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_ia88.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_ia88.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_ia88.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_ia88.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgb565.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgb565.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgb565.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgb565.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgb888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgb888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgb888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgb888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgb888_bluescreen.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgb888_bluescreen.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgb888_bluescreen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgb888_bluescreen.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgba888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgba888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgba888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgba888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgba8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgba8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_rgba8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_rgba8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_uv88.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_uv88.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_uv88.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_uv88.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_uvlx8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_uvlx8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_uvlx8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_uvlx8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/sample_uvwq8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_uvwq8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/sample_uvwq8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/sample_uvwq8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_a8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_a8.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_abgr8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_abgr8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_argb8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_argb8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_bgr565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_bgr565.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_bgr888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_bgr888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_bgr888_bluescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_bgr888_bluescreen.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_bgra4444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_bgra4444.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_bgra5551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_bgra5551.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_bgra8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_bgra8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_bgrx5551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_bgrx5551.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_bgrx8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_bgrx8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_dxt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_dxt1.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_dxt1_onebitalpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_dxt1_onebitalpha.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_dxt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_dxt3.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_dxt5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_dxt5.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_i8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_i8.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_ia88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_ia88.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_rgb565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_rgb565.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_rgb888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_rgb888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_rgb888_bluescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_rgb888_bluescreen.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_rgba8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_rgba8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_uv88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_uv88.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_uvlx8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_uvlx8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_cython_uvwq8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_cython_uvwq8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_a8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_a8.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_abgr8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_abgr8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_argb8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_argb8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_bgr565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_bgr565.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_bgr888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_bgr888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_bgr888_bluescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_bgr888_bluescreen.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_bgra4444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_bgra4444.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_bgra5551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_bgra5551.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_bgra8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_bgra8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_bgrx5551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_bgrx5551.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_bgrx8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_bgrx8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_dxt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_dxt1.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_dxt1_onebitalpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_dxt1_onebitalpha.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_dxt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_dxt3.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_dxt5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_dxt5.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_i8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_i8.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_ia88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_ia88.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_rgb565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_rgb565.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_rgb888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_rgb888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_rgb888_bluescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_rgb888_bluescreen.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_rgba8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_rgba8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_uv88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_uv88.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_uvlx8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_uvlx8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_load_python_uvwq8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_load_python_uvwq8888.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_cython_bilinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_cython_bilinear.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_cython_lower_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_cython_lower_left.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_cython_lower_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_cython_lower_right.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_cython_nearest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_cython_nearest.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_cython_upper_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_cython_upper_right.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_python_bilinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_python_bilinear.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_python_lower_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_python_lower_left.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_python_lower_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_python_lower_right.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_python_nearest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_python_nearest.png -------------------------------------------------------------------------------- /tests/test_vtf/test_mipmap_python_upper_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_mipmap_python_upper_right.png -------------------------------------------------------------------------------- /tests/test_vtf/test_ppm_convert_cython_alpha.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_ppm_convert_cython_alpha.ppm -------------------------------------------------------------------------------- /tests/test_vtf/test_ppm_convert_cython_bg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_ppm_convert_cython_bg.ppm -------------------------------------------------------------------------------- /tests/test_vtf/test_ppm_convert_python_alpha.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_ppm_convert_python_alpha.ppm -------------------------------------------------------------------------------- /tests/test_vtf/test_ppm_convert_python_bg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_ppm_convert_python_bg.ppm -------------------------------------------------------------------------------- /tests/test_vtf/test_res_hotspot.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_res_hotspot.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_a8.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_a8.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_a8.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_a8.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_abgr8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_abgr8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_abgr8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_abgr8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_argb8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_argb8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_argb8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_argb8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgr565.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgr565.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgr565.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgr565.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgr888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgr888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgr888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgr888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgr888_bluescreen.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgr888_bluescreen.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgr888_bluescreen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgr888_bluescreen.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgra4444.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgra4444.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgra4444.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgra4444.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgra5551.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgra5551.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgra5551.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgra5551.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgra8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgra8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgra8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgra8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgrx5551.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgrx5551.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgrx5551.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgrx5551.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgrx8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgrx8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_bgrx8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_bgrx8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_dxt1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_dxt1.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_dxt1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_dxt1.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_dxt1_onebitalpha.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_dxt1_onebitalpha.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_dxt1_onebitalpha.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_dxt1_onebitalpha.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_dxt3.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_dxt3.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_dxt3.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_dxt3.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_dxt5.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_dxt5.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_dxt5.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_dxt5.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_i8.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_i8.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_i8.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_i8.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_ia88.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_ia88.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_ia88.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_ia88.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_rgb565.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_rgb565.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_rgb565.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_rgb565.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_rgb888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_rgb888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_rgb888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_rgb888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_rgb888_bluescreen.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_rgb888_bluescreen.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_rgb888_bluescreen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_rgb888_bluescreen.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_rgba8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_rgba8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_rgba8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_rgba8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_uv88.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_uv88.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_uv88.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_uv88.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_uvlx8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_uvlx8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_uvlx8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_uvlx8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_uvwq8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_uvwq8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_cython_uvwq8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_cython_uvwq8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_a8.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_a8.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_a8.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_a8.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_abgr8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_abgr8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_abgr8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_abgr8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_argb8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_argb8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_argb8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_argb8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgr565.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgr565.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgr565.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgr565.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgr888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgr888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgr888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgr888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgr888_bluescreen.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgr888_bluescreen.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgr888_bluescreen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgr888_bluescreen.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgra4444.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgra4444.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgra4444.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgra4444.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgra5551.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgra5551.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgra5551.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgra5551.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgra8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgra8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgra8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgra8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgrx5551.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgrx5551.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgrx5551.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgrx5551.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgrx8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgrx8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_bgrx8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_bgrx8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_i8.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_i8.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_i8.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_i8.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_ia88.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_ia88.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_ia88.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_ia88.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_rgb565.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_rgb565.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_rgb565.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_rgb565.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_rgb888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_rgb888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_rgb888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_rgb888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_rgb888_bluescreen.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_rgb888_bluescreen.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_rgb888_bluescreen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_rgb888_bluescreen.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_rgba8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_rgba8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_rgba8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_rgba8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_uv88.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_uv88.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_uv88.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_uv88.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_uvlx8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_uvlx8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_uvlx8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_uvlx8888.vtf -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_uvwq8888.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_uvwq8888.vmt -------------------------------------------------------------------------------- /tests/test_vtf/test_save_python_uvwq8888.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tests/test_vtf/test_save_python_uvwq8888.vtf -------------------------------------------------------------------------------- /tool-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tool-requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/tox.ini -------------------------------------------------------------------------------- /type_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/type_tests/README.md -------------------------------------------------------------------------------- /type_tests/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/type_tests/ruff.toml -------------------------------------------------------------------------------- /type_tests/typ_test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/type_tests/typ_test_core.py -------------------------------------------------------------------------------- /type_tests/typ_test_math_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/type_tests/typ_test_math_ops.py -------------------------------------------------------------------------------- /type_tests/typ_test_vmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamSpen210/srctools/HEAD/type_tests/typ_test_vmf.py --------------------------------------------------------------------------------