mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-09 15:05:36 +00:00
Small refactoring.
This commit is contained in:
parent
03f693f104
commit
219777687f
|
@ -156,14 +156,10 @@ static double CompressImageInSerial(
|
||||||
stopWatch.Reset();
|
stopWatch.Reset();
|
||||||
stopWatch.Start();
|
stopWatch.Start();
|
||||||
|
|
||||||
// !FIXME! We're assuming that we have 4x4 blocks here...
|
|
||||||
CompressionJob cj (imgData, outBuf, imgWidth, imgHeight);
|
CompressionJob cj (imgData, outBuf, imgWidth, imgHeight);
|
||||||
if(fStats && settings.logStream) {
|
if(fStats && settings.logStream) {
|
||||||
// !FIXME! Actually use the stat manager...
|
|
||||||
//(*fStats)(cj, *(settings.pStatManager));
|
|
||||||
(*fStats)(cj, settings.logStream);
|
(*fStats)(cj, settings.logStream);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
(*f)(cj);
|
(*f)(cj);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue