// RUN: %dxc -E main -T cs_6_0 %s | FileCheck %s // CHECK: groupId // CHECK: threadIdInGroup // CHECK: threadId // CHECK: barrier // CHECK: addrspace(3) // // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License (MIT). // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. // // Developed by Minigraph // // Author: James Stanard // // The CS for guassian blurring a single RGB buffer. // // For the intended bloom blurring algorithm, this shader is expected to be used only on // the lowest resolution bloom buffer before starting the series of upsample-and-blur // passes. #include "PostEffectsRS.hlsli" Texture2D InputBuf : register( t0 ); RWTexture2D Result : register( u0 ); cbuffer cb0 : register(b0) { float2 g_inverseDimensions; } // The guassian blur weights (derived from Pascal's triangle) static const float Weights[5] = { 70.0f / 256.0f, 56.0f / 256.0f, 28.0f / 256.0f, 8.0f / 256.0f, 1.0f / 256.0f }; float3 BlurPixels( float3 a, float3 b, float3 c, float3 d, float3 e, float3 f, float3 g, float3 h, float3 i ) { return Weights[0]*e + Weights[1]*(d+f) + Weights[2]*(c+g) + Weights[3]*(b+h) + Weights[4]*(a+i); } // 16x16 pixels with an 8x8 center that we will be blurring writing out. Each uint is two color channels packed together groupshared uint CacheR[128]; groupshared uint CacheG[128]; groupshared uint CacheB[128]; void Store2Pixels( uint index, float3 pixel1, float3 pixel2 ) { CacheR[index] = f32tof16(pixel1.r) | f32tof16(pixel2.r) << 16; CacheG[index] = f32tof16(pixel1.g) | f32tof16(pixel2.g) << 16; CacheB[index] = f32tof16(pixel1.b) | f32tof16(pixel2.b) << 16; } void Load2Pixels( uint index, out float3 pixel1, out float3 pixel2 ) { uint rr = CacheR[index]; uint gg = CacheG[index]; uint bb = CacheB[index]; pixel1 = float3( f16tof32(rr ), f16tof32(gg ), f16tof32(bb ) ); pixel2 = float3( f16tof32(rr >> 16), f16tof32(gg >> 16), f16tof32(bb >> 16) ); } void Store1Pixel( uint index, float3 pixel ) { CacheR[index] = asuint(pixel.r); CacheG[index] = asuint(pixel.g); CacheB[index] = asuint(pixel.b); } void Load1Pixel( uint index, out float3 pixel ) { pixel = asfloat( uint3(CacheR[index], CacheG[index], CacheB[index]) ); } // Blur two pixels horizontally. This reduces LDS reads and pixel unpacking. void BlurHorizontally( uint outIndex, uint leftMostIndex ) { float3 s0, s1, s2, s3, s4, s5, s6, s7, s8, s9; Load2Pixels( leftMostIndex + 0, s0, s1 ); Load2Pixels( leftMostIndex + 1, s2, s3 ); Load2Pixels( leftMostIndex + 2, s4, s5 ); Load2Pixels( leftMostIndex + 3, s6, s7 ); Load2Pixels( leftMostIndex + 4, s8, s9 ); Store1Pixel(outIndex , BlurPixels(s0, s1, s2, s3, s4, s5, s6, s7, s8)); Store1Pixel(outIndex+1, BlurPixels(s1, s2, s3, s4, s5, s6, s7, s8, s9)); } void BlurVertically( uint2 pixelCoord, uint topMostIndex ) { float3 s0, s1, s2, s3, s4, s5, s6, s7, s8; Load1Pixel( topMostIndex , s0 ); Load1Pixel( topMostIndex+ 8, s1 ); Load1Pixel( topMostIndex+16, s2 ); Load1Pixel( topMostIndex+24, s3 ); Load1Pixel( topMostIndex+32, s4 ); Load1Pixel( topMostIndex+40, s5 ); Load1Pixel( topMostIndex+48, s6 ); Load1Pixel( topMostIndex+56, s7 ); Load1Pixel( topMostIndex+64, s8 ); Result[pixelCoord] = BlurPixels(s0, s1, s2, s3, s4, s5, s6, s7, s8); } [RootSignature(PostEffects_RootSig)] [numthreads( 8, 8, 1 )] void main( uint3 Gid : SV_GroupID, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID ) { // // Load 4 pixels per thread into LDS // int2 GroupUL = (Gid.xy << 3) - 4; // Upper-left pixel coordinate of group read location int2 ThreadUL = (GTid.xy << 1) + GroupUL; // Upper-left pixel coordinate of quad that this thread will read // // Store 4 unblurred pixels in LDS // int destIdx = GTid.x + (GTid.y << 4); Store2Pixels(destIdx+0, InputBuf[ThreadUL + uint2(0, 0)], InputBuf[ThreadUL + uint2(1, 0)]); Store2Pixels(destIdx+8, InputBuf[ThreadUL + uint2(0, 1)], InputBuf[ThreadUL + uint2(1, 1)]); GroupMemoryBarrierWithGroupSync(); // // Horizontally blur the pixels in Cache // uint row = GTid.y << 4; BlurHorizontally(row + (GTid.x << 1), row + GTid.x + (GTid.x & 4)); GroupMemoryBarrierWithGroupSync(); // // Vertically blur the pixels and write the result to memory // BlurVertically(DTid.xy, (GTid.y << 3) + GTid.x); }