All Projects → ForserX → DLAA

ForserX / DLAA

Licence: GPL-3.0 license
(DLAA) Directionally Localized antiAliasing

Programming Languages

HLSL
714 projects

Projects that are alternatives of or similar to DLAA

Spirv Vm
Virtual machine for executing SPIR-V
Stars: ✭ 173 (+861.11%)
Mutual labels:  shaders, hlsl
Alloy
Alloy physical shader framework for Unity.
Stars: ✭ 244 (+1255.56%)
Mutual labels:  shaders, hlsl
Unity Shaders
✨ Shader demo - More than 300 examples
Stars: ✭ 198 (+1000%)
Mutual labels:  shaders, hlsl
Hlslexplorer
See how hardware understands your HLSL
Stars: ✭ 91 (+405.56%)
Mutual labels:  shaders, hlsl
DrawSpace
Space-game oriented rendering engine
Stars: ✭ 20 (+11.11%)
Mutual labels:  shaders, hlsl
Reshade
A generic post-processing injector for games and video software.
Stars: ✭ 2,285 (+12594.44%)
Mutual labels:  shaders, hlsl
Shadered
Lightweight, cross-platform & full-featured shader IDE
Stars: ✭ 3,247 (+17938.89%)
Mutual labels:  shaders, hlsl
Directxtk12
The DirectX Tool Kit (aka DirectXTK12) is a collection of helper classes for writing DirectX 12 code in C++
Stars: ✭ 765 (+4150%)
Mutual labels:  shaders, directx-12
Dxbc2Dxil
DEPRECATED. DXBC to DXIL (HLSL Bytecode to LLVM IR) using internal APIs.
Stars: ✭ 21 (+16.67%)
Mutual labels:  shaders, hlsl
ConvectionKernels
Fast, high-quality texture compression library for many formats
Stars: ✭ 40 (+122.22%)
Mutual labels:  directx-11, directx-12
3d Game Shaders For Beginners
🎮 A step-by-step guide to implementing SSAO, depth of field, lighting, normal mapping, and more for your 3D game.
Stars: ✭ 11,698 (+64888.89%)
Mutual labels:  shaders, hlsl
CrossWindow-Demos
🥪 Examples of how to use CrossWindow for things like rendering graphics, listening to events, etc.
Stars: ✭ 48 (+166.67%)
Mutual labels:  directx-11, directx-12
Hlsl To Ispc
HLSL-to-ISPC Utility Library
Stars: ✭ 37 (+105.56%)
Mutual labels:  shaders, hlsl
Hlslpp
Math library using hlsl syntax with SSE/NEON support
Stars: ✭ 153 (+750%)
Mutual labels:  shaders, hlsl
Lwks Fx Bundle
Synced user effects pack
Stars: ✭ 21 (+16.67%)
Mutual labels:  shaders, hlsl
Universalshaderexamples
Sand box project containing example shaders and assets compatible with Unity Universal Render Pipeline.
Stars: ✭ 207 (+1050%)
Mutual labels:  shaders, hlsl
Hlsl2glslfork
HLSL to GLSL language translator based on ATI's HLSL2GLSL. Used in Unity.
Stars: ✭ 488 (+2611.11%)
Mutual labels:  shaders, hlsl
Slang
Making it easier to work with shaders
Stars: ✭ 627 (+3383.33%)
Mutual labels:  shaders, hlsl
Urp Lwrp Shaders
A Collection of Shader For URP(LWRP) Render Pipeline
Stars: ✭ 252 (+1300%)
Mutual labels:  shaders, hlsl
unity-raymarcher
Real-time ray marching shaders in Unity
Stars: ✭ 28 (+55.56%)
Mutual labels:  shaders, hlsl

DLAA: Directionally Localized antiAliasing

DLAA it's fasted aa shader. 2011-2022 (C)

Support

  • Dx10
  • Dx10.1
  • Dx11
  • Dx12

Use

// Replace 'screen_res' to your screen size variable

// Include DLAA
#include "dlaa.hlsl"

float4 main(p_screen I) : SV_Target
{
	// Z - Image width | W - Image height
	float2 fSize  = screen_res.zw;
	return DLAAPixelShader(I.tc0, fSize);
}

Another Settings

#define HDR
  • Hight passing
#define TFU2_HIGH_PASS

Contrib

  • facepuncherfromrussia
  • ForserX
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].