https://github.com/shader-slang/slang
Raw File
Tip revision: a53f817623c917887926d3601cfa88906d6d52b9 authored by Tim Foley on 08 April 2020, 16:41:59 UTC
Fixes for IR generics (#1311)
Tip revision: a53f817
bool-op.slang
// enum.slang
//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute
//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute

// Confirm operations that produce bools - such as comparisons, or && ||, ! work correctly

//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0], stride=4):out
RWStructuredBuffer<int> outputBuffer;

[numthreads(16, 1, 1)]
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
{
    uint tid = dispatchThreadID.x;; 

    uint uv = tid;
    int iv = int(tid);
    
    bool2 bv2 = { tid & 1, tid > 10 };      
    
    float2 f2 = { float(tid), float(tid + 1) };
    
    bool bv = tid > 6;
    let not_bv2 = !bv2;
    
    int r = 0;
    if (bv)
    {
        r |= 0x0001;
    }
    if (!bv)
    {
        r |= 0x0002;
    }
    
    if (iv)
    {
        r|= 0x0004;
    }
    if (!iv)
    {
        r|= 0x0008;
    } 
    
    if (uv)
    {
        r |= 0x0010;
    }
    if (!uv)
    {
        r |= 0x0020;
    }
    
    if (all(bv2))
    {
        r |= 0x0040;
    }
    if (all(not_bv2))
    {
        r |= 0x0080;
    }
    
    if (any(!f2))
    {
        r |= 0x0100;
    }
    
    // TODO(JS): Support on GLSL targets
    // This doesn't currently work on GLSL targets, and because there 
    // do not appear to be any vector bitwise operations. Could be achieved
    // by deconstructing, and reconstructing the vec result
    /* if (all(f2 || bv2))
    {
        r |= 0x0200;
    } */
    
    outputBuffer[tid] = r;
}
back to top