Home
last modified time | relevance | path

Searched refs:kGridSize (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/services/camera/libcameraservice/device3/
DDistortionMapper.cpp420 if (mCorrectedGrid.size() != kGridSize * kGridSize) { in buildGrids()
421 mCorrectedGrid.resize(kGridSize * kGridSize); in buildGrids()
422 mDistortedGrid.resize(kGridSize * kGridSize); in buildGrids()
426 float gridSpacingX = (mArrayWidth + 2 * gridMargin) / kGridSize; in buildGrids()
427 float gridSpacingY = (mArrayHeight + 2 * gridMargin) / kGridSize; in buildGrids()
431 for (size_t i = 0; i < kGridSize; i++, x += gridSpacingX) { in buildGrids()
433 for (size_t j = 0; j < kGridSize; j++, y += gridSpacingY, index++) { in buildGrids()
DDistortionMapper.h147 constexpr static size_t kGridSize = 15; variable