blob: 93759e8ad7f7578ba5e77c872c124215ee8b923b [file] [log] [blame]
#include "RenderArea.h"
namespace android {
float RenderArea::getCaptureFillValue(CaptureFill captureFill) {
switch(captureFill) {
case CaptureFill::CLEAR:
return 0.0f;
case CaptureFill::OPAQUE:
default:
return 1.0f;
}
}
} // namespace android