Examples of MaxLOD()


Examples of d3d11.states.D3D11_SAMPLER_DESC.MaxLOD()

   * @param args
   */
  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);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.