| 1381 | float psnr = 0.f; |
| 1382 | }; |
| 1383 | |
| 1384 | bool CompressTextureSetWithTargetPSNR(ntc::IContext* context, ntc::ITextureSet* textureSet) |
| 1385 | { |
| 1386 | ntc::Status ntcStatus; |
| 1387 | |
| 1388 | ntc::AdaptiveCompressionSessionWrapper session(context); |
| 1389 | ntcStatus = context->CreateAdaptiveCompressionSession(session.ptr()); |
| 1390 | CHECK_NTC_RESULT("CreateAdaptiveCompressionSession") |
| 1391 | |
| 1392 | float const targetPsnr = g_options.targetPsnr; |
nothing calls this directly
no outgoing calls
no test coverage detected