Lines Matching refs:depthWidth
496 size_t depthWidth, depthHeight; in createInternalStreams() local
497 auto ret = getMatchingDepthSize(width, height, mSupportedDepthSizes, &depthWidth, &depthHeight); in createInternalStreams()
533 ret = device->createStream(mDepthSurface, depthWidth, depthHeight, kDepthMapPixelFormat, in createInternalStreams()
723 size_t *depthWidth /*out*/, size_t *depthHeight /*out*/) { in getMatchingDepthSize() argument
724 if ((depthWidth == nullptr) || (depthHeight == nullptr)) { in getMatchingDepthSize()
729 *depthWidth = *depthHeight = 0; in getMatchingDepthSize()
736 *depthWidth = width; in getMatchingDepthSize()
743 auto oldSize = (*depthWidth) * (*depthHeight); in getMatchingDepthSize()
745 *depthWidth = currentWidth; in getMatchingDepthSize()
751 return ((*depthWidth > 0) && (*depthHeight > 0)) ? OK : BAD_VALUE; in getMatchingDepthSize()
790 size_t depthWidth, depthHeight; in getCompositeStreamInfo() local
791 auto ret = getMatchingDepthSize(streamInfo.width, streamInfo.height, depthSizes, &depthWidth, in getCompositeStreamInfo()
806 (*compositeOutput)[1].width = depthWidth; in getCompositeStreamInfo()