Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Craft | 9,547 | 5 months ago | 125 | mit | C | |||||
A simple Minecraft clone written in C using modern OpenGL (shaders). | ||||||||||
Ocean | 489 | 1 | 6 years ago | 1 | December 21, 2015 | 9 | mit | JavaScript | ||
Realistic water shader for Three.js | ||||||||||
Grassbending | 482 | 5 months ago | 1 | mit | C# | |||||
A replacement for Unity's terrain grass shader with alpha blended rendering and touch bending effect | ||||||||||
Unityvisualizations | 446 | 3 years ago | 5 | apache-2.0 | ShaderLab | |||||
Collection of shaders and visual effects created for Unity 3D. | ||||||||||
Godot_goodies | 396 | a year ago | ||||||||
Collection of nice stuff for Godot | ||||||||||
Terrain Builder | 309 | a year ago | 6 | gpl-2.0 | JavaScript | |||||
🏔 Procedural terrain using Three.js and perlin noise, Now Accelerated by your GPU! | ||||||||||
Unity_resources | 177 | 2 years ago | gpl-3.0 | |||||||
A list of resources and tutorials for those doing programming in Unity. | ||||||||||
Tessellation | 157 | 9 months ago | 7 | other | C# | |||||
A Tessellation and Triplanar terrain shader for planetary terrain | ||||||||||
Erics Magicavoxel Shaders | 120 | 2 years ago | mit | |||||||
Shaders for MagicaVoxel including Terrain Generator, Game Of Life, Waterflow Emulator, Advanced Flood System etc. | ||||||||||
Osbes Minecraft Bedrock Edition Shader | 117 | a year ago | 22 | gpl-3.0 | GLSL | |||||
shaders for minecraft_pe that uses the latest functionality of OpenGLES 3.0 |
This repository contains code for a fully parallelised implementation of the marching cubes algorithm for usage in terrain generation, written in HLSL and using DirectX 11. All of the CPU-side DirectX code has been included in addition to the shader code.
The marching cubes implementation can be found in shaders/marching_cubes_gs.hlsl.
Implementations of the various noise algorithms can be found in the noise_fx.hlsl and gradient_noise_cs.hlsl shaders. The gradient noise shader also contains all of the volumetric data generation code.
This application was built using a lecturer-provided framework that is not publically available. However, all of the CPU-side compute shader code has been provided as that was not part of the initial framework, and the code provided should hopefully be easy enough to follow through without direct access to the framework's class implementations.