comparison Framework/Loaders/OrthancMultiframeVolumeLoader.cpp @ 1296:86400fa16091

fix build
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 23 Feb 2020 15:25:49 +0100
parents 2d8ab34c8c91
children 8a0a62189f46
comparison
equal deleted inserted replaced
1293:f050391249f0 1296:86400fa16091
343 } 343 }
344 else 344 else
345 { 345 {
346 ImageBuffer3D& target = volume_->GetPixelData(); 346 ImageBuffer3D& target = volume_->GetPixelData();
347 347
348 const uint64_t bpp = target.GetBytesPerPixel();
349 const uint64_t width = target.GetWidth(); 348 const uint64_t width = target.GetWidth();
350 const uint64_t height = target.GetHeight(); 349 const uint64_t height = target.GetHeight();
351 const uint64_t depth = target.GetDepth(); 350 const uint64_t depth = target.GetDepth();
352 const uint64_t voxelCount = width * height * depth; 351 const uint64_t voxelCount = width * height * depth;
353 352