Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,6 @@ struct Interface {
TYPE scales[10];
};

#if 0
// Requires vector loading support. Enable when available.
RWStructuredBuffer<Interface> Input;
RWStructuredBuffer<Interface> Output;

TYPE g_val;

[shader("compute")]
[numthreads(8,1,1)]
void main(uint GI : SV_GroupIndex) {
assignments(Output[GI].assigned, Input[GI].scales);
Output[GI].arithmeticked = arithmetic(Input[GI].arithmeticked);
Output[GI].logicked = logic(Input[GI].logicked, Input[GI].assigned);
Output[GI].indexed = index(Input[GI].indexed, GI, g_val);
}
#endif

// A mixed-type overload to test overload resolution and mingle different vector element types in ops
// Test assignment operators.
// CHECK-LABEL: define void @"\01?assignments
Expand Down