diff options
Diffstat (limited to 'tests/compute/frem.slang')
| -rw-r--r-- | tests/compute/frem.slang | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/compute/frem.slang b/tests/compute/frem.slang index 60012ea1e..848f0513a 100644 --- a/tests/compute/frem.slang +++ b/tests/compute/frem.slang @@ -7,7 +7,7 @@ // Test uses of floating-point `%` operator. RWStructuredBuffer<float> gInput; -//TEST_INPUT:ubuffer(data=[2.0 1.0 5.0 2.0 2.0 -4.0 -5.0 2.0], stride=4):dxbinding(0),glbinding(0),name=gInput +//TEST_INPUT:ubuffer(data=[2.0 1.0 5.0 2.0 2.0 -4.0 -5.0 2.0], stride=4):name=gInput int test(int inVal) { @@ -16,7 +16,7 @@ int test(int inVal) return int(a % b); } -//TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):dxbinding(1),glbinding(1),out,name=outputBuffer +//TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):out,name=outputBuffer RWStructuredBuffer<int> outputBuffer; [numthreads(4, 1, 1)] |
