https://github.com/shader-slang/slang
Raw File
Tip revision: 6f31eae79d5b4297d0099c5779a9806a786cf9f8 authored by Yong He on 01 March 2023, 21:19:33 UTC
Implement derivatives for HLSL intrinsics. (#2684)
Tip revision: 6f31eae
packoffset.slang
// packoffset.slang
//DIAGNOSTIC_TEST:SIMPLE:-target hlsl

// use of `packoffset` (not supported):
cbuffer B
{
	float4 x : packoffset(c0);
}

void main()
{}
back to top