Does compressing files improve load/viewer performance?

2299
1
Jump to solution
04-08-2016 06:30 AM
LR
by
Occasional Contributor III

Compressing a PNG by using color indexing, for example. Or do only dimensions matter?

0 Kudos
1 Solution

Accepted Solutions
ThomasFuchs
Esri Regular Contributor

Hi ZR,

this is a trade off between two bottlenecks:

  1. reading files from disk
  2. decompressing the files on the CPU

The answer depends on your hardware and compression method. I would recommend to use standard compression to reduce the file size. After reading the textures they are sent to the GPU via the Open GL interface. For CityEngine's procedural runtime 'GL Texture Compression' is enabled by default, what should give best GPU performance. Texture compression is provided by the driver and is independent of the original image format.

View solution in original post

1 Reply
ThomasFuchs
Esri Regular Contributor

Hi ZR,

this is a trade off between two bottlenecks:

  1. reading files from disk
  2. decompressing the files on the CPU

The answer depends on your hardware and compression method. I would recommend to use standard compression to reduce the file size. After reading the textures they are sent to the GPU via the Open GL interface. For CityEngine's procedural runtime 'GL Texture Compression' is enabled by default, what should give best GPU performance. Texture compression is provided by the driver and is independent of the original image format.