SPIRV-Cross

(★ 2,487)

SPIRV-Cross is a practical tool and library for performing reflection on SPIR-V and disassembling SPIR-V back to high level languages.

파일 탐색기

파일 수가 많아 일부만 표시됩니다. 전체 파일은 위 다운로드 버튼으로 확인해 주세요.

  • .clang-format
  • .gitignore
  • appveyor.yml
  • build_glslang_spirv_tools.sh
  • checkout_glslang_spirv_tools.sh
  • CMakeLists.txt
  • CODE_OF_CONDUCT.adoc
  • format_all.sh
  • GLSL.std.450.h
  • LICENSE
  • main.cpp
  • Makefile
  • NonSemanticShaderDebugInfo100.h
  • Package.swift
  • README.md

# CDN으로 사용하기

jsDelivr

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

파일 목록이 많아 일부만 표시됩니다.

명령어 용어집

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

🔍

clang-format

설명 보기 ▼

C/C++/Java/JavaScript/Objective-C/Protobuf/C# 코드 자동 형식화.
더 많은 정보: <https://clang.llvm.org/docs/ClangFormat.html>.

clang-format {{path/to/file}}

파일 형식을 지정하고 결과를 `stdout`으로 출력:

clang-format -i {{path/to/file}}

그 자리에서 파일 형식을 지정:

clang-format --style {{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} {{path/to/file}}

미리 정의된 코딩 스타일을 사용하여 파일 형식을 지정:

🔍

ctest

설명 보기 ▼

CMake 테스트 드라이버 프로그램.
더 많은 정보: <https://gitlab.kitware.com/cmake/community/-/wikis/doc/ctest/Testing-With-CTest>.

ctest

CMake 프로젝트에 정의된 모든 테스트를 실행하며 , 한번에 4개의 작업을 병렬 실행:

ctest {{[-j|--parallel]}} 4

사용 가능한 테스트 목록 표시:

ctest {{[-j|--parallel]}}

이름을 기준으로 단일 테스트를 실행하거나 `regex` 기준으로 필터링:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

pkg-config

설명 보기 ▼

애플리케이션 컴파일을 위한 설치된 라이브러리의 세부 정보를 제공.
더 많은 정보: <https://manned.org/pkg-config>.

pkg-config --libs {{library1 library2 ...}}

라이브러리 및 그 의존성 목록 확인:

pkg-config --cflags --libs {{library1 library2 ...}}

라이브러리, 그 의존성 및 gcc에 대한 적절한 cflags 목록 확인:

pkg-config --modversion {{module1 module2 ...}}

libgtk-3, libwebkit2gtk-4.0 및 모든 의존성을 사용하여 코드 컴파일:

// repository documentation