*/
public static void main(String[] args) {
D3D11_SAMPLER_DESC desc = new D3D11_SAMPLER_DESC();
desc.AddressU(D3D11_TEXTURE_ADDRESS_MODE.D3D11_TEXTURE_ADDRESS_MIRROR);
desc.MaxLOD(654.0f);
desc.MaxAnisotropy(16);
long start = System.currentTimeMillis();
int hash = desc.hashCode();
System.out.println(System.currentTimeMillis() - start);