MaskedOcclusionCulling

(โ˜… 690)

Example code for the research paper "Masked Software Occlusion Culling"; implements an efficient alternative to the hierarchical depth buffer algorithm.

  • AllMOCProjects.sln
  • CMakeLists.txt
  • CompilerSpecific.inl
  • CONTRIBUTING.md
  • CullingThreadpool.cpp
  • CullingThreadpool.h
  • FrameRecorder.cpp
  • FrameRecorder.h
  • license.txt
  • MaskedOcclusionCulling.cpp
  • MaskedOcclusionCulling.h
  • MaskedOcclusionCullingAVX2.cpp
  • MaskedOcclusionCullingAVX512.cpp
  • MaskedOcclusionCullingCommon.inl
  • README.md

# Installation Guide

1. Get the code
git clone https://github.com/GameTechDev/MaskedOcclusionCulling

Downloads the entire project code from GitHub to your computer.

cd MaskedOcclusionCulling

Moves into the project folder you just downloaded.

2. CMake

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • CMake The tool used to generate build configuration.
  • C/C++ ์ปดํŒŒ์ผ๋Ÿฌ Windows needs Visual Studio (Community edition, free), macOS needs Xcode Command Line Tools, Linux needs the gcc/g++ package.
are supported through [CMake](https://cmake.org/). See the `CMakeLists.txt` files in the `Example` and `FillrateTest` folders. You can use CMake to generate a

Type this command into your terminal and run it.

If using the original visual studio project, you need to "opt in" for AVX-512 support by setting `#define USE_AVX512 1`. When building with CMake you can

Type this command into your terminal and run it.

โœ… Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).

Pulled directly from this repo's README.

3. .NET

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet restore

Downloads the packages the project depends on.

dotnet run

Builds the project and runs it immediately.

โœ… After dotnet run, check the message or address shown in the terminal.
// repository documentation