--- src/osgEarthDrivers/fastdxt/intrinsic.cpp.orig 2023-05-16 14:53:59 UTC +++ src/osgEarthDrivers/fastdxt/intrinsic.cpp @@ -45,7 +45,7 @@ void ExtractBlock_Intrinsics( const byte *inPtr, int width, byte *colorBlock ) { __m128i t0, t1, t2, t3; - register int w = width << 2; // width*4 + int w = width << 2; // width*4 t0 = _mm_load_si128 ( (__m128i*) inPtr ); _mm_store_si128 ( (__m128i*) &colorBlock[0], t0 ); // copy first row, 16bytes