Lines Matching refs:depthWidth
510 size_t depthWidth, depthHeight; in createInternalStreams() local
511 auto ret = getMatchingDepthSize(width, height, mSupportedDepthSizes, &depthWidth, &depthHeight); in createInternalStreams()
547 ret = device->createStream(mDepthSurface, depthWidth, depthHeight, kDepthMapPixelFormat, in createInternalStreams()
729 size_t *depthWidth /*out*/, size_t *depthHeight /*out*/) { in getMatchingDepthSize() argument
730 if ((depthWidth == nullptr) || (depthHeight == nullptr)) { in getMatchingDepthSize()
735 *depthWidth = *depthHeight = 0; in getMatchingDepthSize()
742 *depthWidth = width; in getMatchingDepthSize()
749 auto oldSize = (*depthWidth) * (*depthHeight); in getMatchingDepthSize()
751 *depthWidth = currentWidth; in getMatchingDepthSize()
757 return ((*depthWidth > 0) && (*depthHeight > 0)) ? OK : BAD_VALUE; in getMatchingDepthSize()
796 size_t depthWidth, depthHeight; in getCompositeStreamInfo() local
797 auto ret = getMatchingDepthSize(streamInfo.width, streamInfo.height, depthSizes, &depthWidth, in getCompositeStreamInfo()
812 (*compositeOutput)[1].width = depthWidth; in getCompositeStreamInfo()