mtld3d

(★ 37)

Direct3D9 implementation on top of Metal.

파일 탐색기

  • .gitignore
  • AGENTS.md
  • CLAUDE.md
  • CONTRIBUTING.md
  • INSTALL.md
  • LICENSE
  • Makefile
  • mtld3d.conf
  • README.md
  • rustfmt.toml

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

cargo clippy

설명 보기 ▼

A collection of lints to catch common mistakes and improve your Rust code.

cargo clippy

Run checks over the code in the current directory:

cargo clippy --locked

Require that `Cargo.lock` is up to date:

cargo clippy --workspace

Run checks on all packages in the workspace:

🔍

cargo fmt

설명 보기 ▼

Run `rustfmt` on all source files in a Rust project.
See also: `rustfmt`.

cargo fmt

Format all source files:

cargo fmt --check

Check for formatting errors without writing to the files:

cargo fmt -- {{rustfmt_args}}

Pass arguments to each `rustfmt` call:

🔍

cargo test

설명 보기 ▼

Execute the unit and integration tests of a Rust package.

cargo {{[t|test]}} {{test_name}}

Only run tests containing a specific string in their names:

cargo {{[t|test]}} -- --test-threads {{count}}

Set the number of simultaneous running test cases:

cargo {{[t|test]}} {{[-r|--release]}}

Test artifacts in release mode, with optimizations:

🔍

perf

설명 보기 ▼

Linux 성능 카운터 측정을 위한 프레임워크.
더 많은 정보: <https://perfwiki.github.io/main/>.

perf stat {{gcc hello.c}}

명령에 대한 기본 성능 카운터 통계 표시:

sudo perf top

시스템 전역의 실시간 성능 카운터 프로필 표시:

sudo perf record {{command}}

명령을 실행하고 프로필을 `perf.data`에 기록:

🔍

wine

설명 보기 ▼

Unix 기반 시스템에서 Windows 실행 파일을 실행.
더 많은 정보: <https://gitlab.winehq.org/wine/wine/-/wikis/Commands>.

wine {{command}}

`wine` 환경에서 특정 프로그램 실행:

wine start {{command}}

백그라운드에서 특정 프로그램 실행:

wine msiexec /{{i|x}} {{path/to/package.msi}}

MSI 패키지 설치/제거:

🔍

softwareupdate

설명 보기 ▼

macOS App Store 앱 업데이트 도구.
더 많은 정보: <https://keith.github.io/xcode-man-pages/softwareupdate.8.html>.

softwareupdate --list

사용 가능한 모든 업데이트 나열:

softwareupdate --install --all

모든 업데이트 다운로드 및 설치:

softwareupdate --install --recommended

모든 [r]추천 업데이트 다운로드 및 설치:

// repository documentation