blob: 93759e8ad7f7578ba5e77c872c124215ee8b923b [file] [log] [blame]
chaviwa76b2712017-09-20 12:02:26 -07001#include "RenderArea.h"
2
3namespace android {
4
chaviw50da5042018-04-09 13:49:37 -07005float RenderArea::getCaptureFillValue(CaptureFill captureFill) {
6 switch(captureFill) {
7 case CaptureFill::CLEAR:
8 return 0.0f;
9 case CaptureFill::OPAQUE:
10 default:
11 return 1.0f;
12 }
13}
chaviwa76b2712017-09-20 12:02:26 -070014
Iris Chang7501ed62018-04-30 14:45:42 +080015} // namespace android