#include "quantizedmeshgeometry.h"
#include <zlib.h>
#include <QFile>
#include <QByteArray>
#include <QGuiApplication>
#include <QNetworkRequest>
#include <QNetworkReply>
#include "qgsnetworkaccessmanager.h"
#include "qgscoordinatetransform.h"
#include "qgsmaptopixel.h"
#include "map3d.h"
Go to the source code of this file.
◆ GZIP_CHUNK_SIZE
      
        
          | #define GZIP_CHUNK_SIZE   32 * 1024 | 
      
 
 
◆ GZIP_WINDOWS_BIT
      
        
          | #define GZIP_WINDOWS_BIT   15 + 16 | 
      
 
 
◆ gzipDecompress()
      
        
          | bool gzipDecompress | ( | QByteArray | input, | 
        
          |  |  | QByteArray & | output | 
        
          |  | ) |  |  | 
      
 
Decompresses the given buffer using the standard GZIP algorithm. 
- Parameters
- 
  
    | input | The buffer to be decompressed |  | output | The result of the decompression |  
 
- Returns
- trueif the decompression was successful,- falseotherwise
Definition at line 34 of file quantizedmeshgeometry.cpp.
 
 
◆ read_zigzag_encoded_int16_array()
      
        
          | const char* read_zigzag_encoded_int16_array | ( | const char * | dataPtr, | 
        
          |  |  | int | count, | 
        
          |  |  | qint16 * | out | 
        
          |  | ) |  |  |