Home | History | Annotate | Download | only in optimize

Lines Matching refs:tex

401             Texture2D tex = new Texture2D(new Image(format, atlasWidth, atlasHeight, BufferUtils.createByteBuffer(image)));
402 tex.setMagFilter(Texture.MagFilter.Bilinear);
403 tex.setMinFilter(Texture.MinFilter.BilinearNearestMipMap);
404 tex.setWrap(Texture.WrapMode.Clamp);
405 return tex;
439 Texture tex = getMaterialTexture(geom, "DiffuseMap");
440 if (tex == null) {
441 tex = getMaterialTexture(geom, "ColorMap");
444 if (tex != null) {
445 TextureAtlasTile tile = getAtlasTile(tex);
654 Vector2f tex = new Vector2f();
661 tex.x = inBuf.get(i * 2 + 0);
662 tex.y = inBuf.get(i * 2 + 1);
663 Vector2f location = getLocation(tex);