logger.info("client clipmapLevels: " + cacheList.size());
final TextureClipmap textureClipmap = new TextureClipmap(cacheList, clipmapTextureSize, textureConfiguration);
if (showDebugPanels) {
final TextureGridCachePanel panel = new TextureGridCachePanel(cacheList, cacheSize);
final JFrame frame = new JFrame("Texture Cache Debug");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(panel);
frame.setBounds(10, 120, panel.getSize().width, panel.getSize().height);
frame.setVisible(true);
}
return textureClipmap;
}