Package engine.graphics.synthesis.texture.CacheTileManager

Examples of engine.graphics.synthesis.texture.CacheTileManager.TileCacheEntry.sample()


          float u = (float) (x + px * img.getWidth()) / (float) globalXres;
          float v = (float) (y + py * img.getHeight()) / (float) globalYres;

          final Vector4 col;
          if (tce == null) col = c.valueRGBA(u, v);
          else col = tce.sample(x, y);
         
          final Vector3 color = new Vector3();
          int val;
          // !!UGH TODO: optimize this!!
          if (mode == 0) {
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.