diff --git a/mediapipe/render/core/AlphaBlendFilter.cpp b/mediapipe/render/core/AlphaBlendFilter.cpp index b2a1313e1..aec77f672 100644 --- a/mediapipe/render/core/AlphaBlendFilter.cpp +++ b/mediapipe/render/core/AlphaBlendFilter.cpp @@ -36,10 +36,15 @@ namespace Opipe { return true; } + void AlphaBlendFilter::setInputFramebuffer(Framebuffer* framebuffer, + RotationMode rotationMode, + int texIdx, bool ignoreForPrepared) { + Filter::setInputFramebuffer(framebuffer, rotationMode, texIdx, ignoreForPrepared); + } bool AlphaBlendFilter::proceed(float frameTime, bool bUpdateTargets/* = true*/) { _filterProgram->setUniformValue("mixturePercent", _mix); return Filter::proceed(frameTime, bUpdateTargets); } -} \ No newline at end of file +} diff --git a/mediapipe/render/core/AlphaBlendFilter.hpp b/mediapipe/render/core/AlphaBlendFilter.hpp index 3a04703d2..9f82eb92d 100644 --- a/mediapipe/render/core/AlphaBlendFilter.hpp +++ b/mediapipe/render/core/AlphaBlendFilter.hpp @@ -21,6 +21,10 @@ namespace Opipe { _mix = mix; } + void setInputFramebuffer(Framebuffer* framebuffer, + RotationMode rotationMode, + int texIdx, bool ignoreForPrepared) override; + public: AlphaBlendFilter(Context *context); virtual ~AlphaBlendFilter() {}; @@ -29,4 +33,4 @@ namespace Opipe { }; } -#endif \ No newline at end of file +#endif diff --git a/mediapipe/render/core/Framebuffer.cpp b/mediapipe/render/core/Framebuffer.cpp index 897cf8ac5..8ccda0519 100755 --- a/mediapipe/render/core/Framebuffer.cpp +++ b/mediapipe/render/core/Framebuffer.cpp @@ -38,11 +38,11 @@ namespace Opipe { .format = GL_RGBA, .type = GL_UNSIGNED_BYTE }; - + Framebuffer::Framebuffer() { } - + Framebuffer::Framebuffer(Context *context, int width, int height, const TextureAttributes textureAttributes, GLuint textureId) : _texture(-1), _hasFB(true), _framebuffer(-1), _context(context) { @@ -56,7 +56,7 @@ namespace Opipe { _generateFramebuffer(false); _context->_framebuffers.push_back(this); } - + Framebuffer::Framebuffer(Context *context, int width, int height, bool onlyGenerateTexture/* = false*/, const TextureAttributes textureAttributes) : _texture(-1), @@ -74,7 +74,7 @@ namespace Opipe { _context->_framebuffers.push_back(this); } - + Framebuffer::Framebuffer(Context *context, int width, int height, GLuint handle, const TextureAttributes textureAttributes) : _texture(handle), _framebuffer(-1), @@ -83,7 +83,7 @@ namespace Opipe { _height = height; _textureAttributes = textureAttributes; } - + Framebuffer::~Framebuffer() { if (isDealloc) { return; @@ -124,16 +124,16 @@ namespace Opipe { isDealloc = true; } - + void Framebuffer::active() { CHECK_GL(glBindFramebuffer(GL_FRAMEBUFFER, _framebuffer)); CHECK_GL(glViewport(0, 0, _width, _height)); } - + void Framebuffer::inactive() { CHECK_GL(glBindFramebuffer(GL_FRAMEBUFFER, 0)); } - + void Framebuffer::lock(std::string lockKey) { if (lockKey == "Unknow") { Log("Framebuffer LOCK", "未知锁 【hasCode :%s】", _hashCode.c_str()); @@ -142,17 +142,17 @@ namespace Opipe { } _lockKey = lockKey; - _framebufferRetainCount = 1; + _framebufferRetainCount++; Log("Framebuffer LOCK", "lock retainCount == :%d lockKey:%s 【framebufferCode:%s】", _framebufferRetainCount, lockKey.c_str(), _hashCode.c_str()); } - + void Framebuffer::unlock(std::string lockKey) { if (_framebufferRetainCount > 0) { _framebufferRetainCount--; } else { -// assert("过度释放 请检查"); 此处不要崩溃,引用计数管理Framebuffer不会导致过度释放。 + // assert("过度释放 请检查"); 此处不要崩溃,引用计数管理Framebuffer不会导致过度释放。 } if (lockKey != _lockKey) { @@ -169,26 +169,26 @@ namespace Opipe { } void Framebuffer::resetRetainCount() { - _framebufferRetainCount = 1; + _framebufferRetainCount = 0; } - + void *Framebuffer::frameBufferGetBaseAddress() { //#if HARDWARE_BUFFER_ENABLE // return _hardwareBufferReadData; //#endif return NULL; } - + int Framebuffer::getBytesPerRow() { return _width * 4; } - - //#if defined(__ANDROID__) || defined(ANDROID) + + //#if PLATFORM == PLATFORM_ANDROID // AHardwareBuffer_Desc& Framebuffer::getAHardwareBufferDesc(){ // return _graphicBufDes; // } //#endif - + void Framebuffer::_generateTexture() { CHECK_GL(glGenTextures(1, &_texture)); @@ -203,8 +203,8 @@ namespace Opipe { // TODO: Handle mipmaps CHECK_GL(glBindTexture(GL_TEXTURE_2D, 0)); } - - + + void Framebuffer::_generateFramebuffer(bool needGenerateTexture) { CHECK_GL(glGenFramebuffers(1, &_framebuffer)); @@ -229,9 +229,9 @@ namespace Opipe { CHECK_GL(glBindTexture(GL_TEXTURE_2D, 0)); CHECK_GL(glBindFramebuffer(GL_FRAMEBUFFER, 0)); -// Opipe::Log("QuarameraGL", "_generateFramebuffer %d ", _framebuffer); + // Opipe::Log("QuarameraGL", "_generateFramebuffer %d ", _framebuffer); } - + Context *Framebuffer::getContext() { if (_context) { return _context; diff --git a/mediapipe/render/core/FramebufferCache.cpp b/mediapipe/render/core/FramebufferCache.cpp index b9088c9fd..6ff39de36 100755 --- a/mediapipe/render/core/FramebufferCache.cpp +++ b/mediapipe/render/core/FramebufferCache.cpp @@ -91,7 +91,6 @@ Framebuffer* FramebufferCache::fetchFramebuffer(Context *context, Log("Framebuffer 【命中缓存】", "hashcode:%s count:%d", framebufferHashCodeKey.first.c_str(), framebuffer->framebufferRetainCount()); - framebuffer->resetRetainCount(); return framebuffer; } } diff --git a/mediapipe/render/core/LUTFilter.cpp b/mediapipe/render/core/LUTFilter.cpp index 08ae68460..8b82b2994 100644 --- a/mediapipe/render/core/LUTFilter.cpp +++ b/mediapipe/render/core/LUTFilter.cpp @@ -74,4 +74,61 @@ namespace Opipe _filterProgram->setUniformValue("step", _step); return Filter::proceed(frameTime, bUpdateTargets); } + + void LUTFilter::update(float frameTime) { + if (_inputFramebuffers.empty()) return; + + if (!_enable) { + _framebuffer = _inputFramebuffers.begin()->second.frameBuffer; + Source::updateTargets(frameTime); + _framebuffer = 0; + return; + } + + if (getContext()->isCapturingFrame && this == getContext()->captureUpToFilter) { + int captureWidth = getContext()->captureWidth; + int captureHeight = getContext()->captureHeight; + + _framebuffer = getContext()->getFramebufferCache()->fetchFramebuffer(_context, captureWidth, captureHeight); + #if DEBUG + _framebuffer->lock(typeid(*this).name()); + #else + _framebuffer->lock(); + #endif + proceed(false); + + _framebuffer->active(); + getContext()->capturedFrameData = new unsigned char[captureWidth * captureHeight * 4]; + CHECK_GL(glReadPixels(0, 0, captureWidth, captureHeight, GL_RGBA, GL_UNSIGNED_BYTE, getContext()->capturedFrameData)); + _framebuffer->inactive(); + #if DEBUG + _framebuffer->unlock(typeid(*this).name()); + #else + _framebuffer->unlock(); + #endif + } else { + // todo + Framebuffer* firstInputFramebuffer = _inputFramebuffers.begin()->second.frameBuffer; + RotationMode firstInputRotation = _inputFramebuffers.begin()->second.rotationMode; + if (!firstInputFramebuffer) return; + + int rotatedFramebufferWidth = firstInputFramebuffer->getWidth(); + int rotatedFramebufferHeight = firstInputFramebuffer->getHeight(); + if (rotationSwapsSize(firstInputRotation)) + { + rotatedFramebufferWidth = firstInputFramebuffer->getHeight(); + rotatedFramebufferHeight = firstInputFramebuffer->getWidth(); + } + + if (_framebufferScale != 1.0) { + rotatedFramebufferWidth = int(rotatedFramebufferWidth * _framebufferScale); + rotatedFramebufferHeight = int(rotatedFramebufferHeight * _framebufferScale); + } + + _framebuffer = getContext()->getFramebufferCache()->fetchFramebuffer(_context, rotatedFramebufferWidth, rotatedFramebufferHeight); + proceed(frameTime); + } + // _context->getFramebufferCache()->returnFramebuffer(_framebuffer); + _framebuffer = 0; + } } diff --git a/mediapipe/render/core/LUTFilter.hpp b/mediapipe/render/core/LUTFilter.hpp index 2bea8aa1b..065153dab 100644 --- a/mediapipe/render/core/LUTFilter.hpp +++ b/mediapipe/render/core/LUTFilter.hpp @@ -14,13 +14,18 @@ namespace Opipe bool init(Context *context); void setStep(float step); virtual bool proceed(float frameTime = 0, bool bUpdateTargets = true) override; + virtual void update(float frameTime) override; public: LUTFilter(Context *context); - ~LUTFilter(){}; + ~LUTFilter() + { + delete _framebuffer; + _framebuffer = nullptr; + }; float _step; }; } -#endif \ No newline at end of file +#endif diff --git a/mediapipe/render/core/OlaShareTextureFilter.cpp b/mediapipe/render/core/OlaShareTextureFilter.cpp index d29e7926c..577899947 100644 --- a/mediapipe/render/core/OlaShareTextureFilter.cpp +++ b/mediapipe/render/core/OlaShareTextureFilter.cpp @@ -97,36 +97,24 @@ namespace Opipe { rotatedFramebufferHeight = int(rotatedFramebufferHeight * _framebufferScale); } - + if (_framebuffer != nullptr && (_framebuffer->getWidth() != rotatedFramebufferWidth || _framebuffer->getHeight() != rotatedFramebufferHeight)) { - _framebuffer = nullptr; + _framebuffer = 0; } - if (_framebuffer == nullptr || (_framebuffer && _framebuffer->getTexture() != targetTextureId)) { - if (_framebuffer) { - delete _framebuffer; - _framebuffer = 0; - } - if (targetTextureId == -1) { - _framebuffer = getContext()->getFramebufferCache()-> - fetchFramebuffer(_context, - rotatedFramebufferWidth, - rotatedFramebufferHeight); - _framebuffer->lock(); - targetTextureId = _framebuffer->getTexture(); - } else { - _framebuffer = getContext()->getFramebufferCache()-> - fetchFramebufferUseTextureId(_context, - rotatedFramebufferWidth, - rotatedFramebufferHeight, - targetTextureId, - false, - targetTextureAttr); - _framebuffer->lock(); - _targetFramebuffer = true; - } - + if (_framebuffer == nullptr || _framebuffer->isDealloc) { + _framebuffer = getContext()->getFramebufferCache()-> + fetchFramebuffer(_context, + rotatedFramebufferWidth, + rotatedFramebufferHeight, + false, + targetTextureAttr); + _framebuffer->lock(); + } + + if (_framebuffer) { + targetTextureId = _framebuffer->getTexture(); } proceed(frameTime); diff --git a/mediapipe/render/core/OpipeDispatch.hpp b/mediapipe/render/core/OpipeDispatch.hpp index 1a780b698..52c7f32fa 100644 --- a/mediapipe/render/core/OpipeDispatch.hpp +++ b/mediapipe/render/core/OpipeDispatch.hpp @@ -25,7 +25,7 @@ namespace Opipe { public: void runSync(std::function func, Context::ContextType type = Context::GPUImageContext); void runAsync(std::function func, Context::ContextType type = Context::GPUImageContext, - bool async = false); + bool async = true); void setGLThreadDispatch(GLThreadDispatch *glDispatch){ _glThreadDispatch = glDispatch; diff --git a/mediapipe/render/core/Source.cpp b/mediapipe/render/core/Source.cpp index 92dea3e2a..f6be53e45 100755 --- a/mediapipe/render/core/Source.cpp +++ b/mediapipe/render/core/Source.cpp @@ -141,7 +141,7 @@ void Source::updateTargets(float frameTime) { target->setInputFramebuffer(_framebuffer, _outputRotation, _targets[target]); } - for(auto& it : _targets){ + for(auto& it : _targets) { Target* target = it.first; if (target == NULL) { return; diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc index 8fea587d6..50af1c235 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc @@ -29,11 +29,7 @@ namespace Opipe FaceMeshBeautyRender::~FaceMeshBeautyRender() { - if (_lutImage) - { - _lutImage->release(); - _lutImage = nullptr; - } + _olaBeautyFilter->removeAllTargets(); if (_olaBeautyFilter) { @@ -46,22 +42,38 @@ namespace Opipe _outputFilter->release(); _outputFilter = nullptr; } + + if (_lutImage) + { + auto *framebuffer = _lutImage->getFramebuffer(); + delete framebuffer; + _lutImage->release(); + _lutImage = nullptr; + } + + if (_inputFramebuffer) { + delete _inputFramebuffer; + _inputFramebuffer = nullptr; + } + + _context->getFramebufferCache()->purge(); } void FaceMeshBeautyRender::suspend() { - _isRendering = true; + _isRendering = false; } void FaceMeshBeautyRender::resume() { - _isRendering = false; + _isRendering = true; } - TextureInfo FaceMeshBeautyRender::renderTexture(TextureInfo inputTexture) - { - TextureInfo outputTexture; - outputTexture.frameTime = inputTexture.frameTime; + void FaceMeshBeautyRender::renderTexture(TextureInfo inputTexture) + { + if (!_isRendering) { + return; + } if (!_inputFramebuffer) { _inputFramebuffer = new Framebuffer(_context, inputTexture.width, inputTexture.height, @@ -77,10 +89,20 @@ namespace Opipe Framebuffer::defaultTextureAttribures, inputTexture.textureId); } - - _olaBeautyFilter->setInputFramebuffer(_inputFramebuffer); + _inputFramebuffer->lock(); + _olaBeautyFilter->setInputFramebuffer(_inputFramebuffer, NoRotation, 0, true); _olaBeautyFilter->update(inputTexture.frameTime); + _inputFramebuffer->unlock(); + } + TextureInfo FaceMeshBeautyRender::outputRenderTexture(TextureInfo inputTexture) + { + if (_outputFilter == nullptr) { + return inputTexture; + } + + TextureInfo outputTexture; + outputTexture.frameTime = inputTexture.frameTime; auto *outputFramebuffer = _outputFilter->getFramebuffer(); if (outputFramebuffer) { outputTexture.width = outputFramebuffer->getWidth(); @@ -97,8 +119,6 @@ namespace Opipe outputTexture.textureId = inputTexture.textureId; outputTexture.ioSurfaceId = inputTexture.ioSurfaceId; } - - return outputTexture; } diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.h b/mediapipe/render/module/beauty/face_mesh_beauty_render.h index 451bd2290..95713b04e 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.h +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.h @@ -15,7 +15,9 @@ namespace Opipe { void resume(); - TextureInfo renderTexture(TextureInfo inputTexture); + void renderTexture(TextureInfo inputTexture); + + TextureInfo outputRenderTexture(TextureInfo inputTexture); /// 磨皮 float getSmoothing(); diff --git a/mediapipe/render/module/beauty/face_mesh_module.h b/mediapipe/render/module/beauty/face_mesh_module.h index 58294b5f7..cfae1697f 100644 --- a/mediapipe/render/module/beauty/face_mesh_module.h +++ b/mediapipe/render/module/beauty/face_mesh_module.h @@ -109,8 +109,25 @@ namespace Opipe virtual void startModule() = 0; virtual void stopModule() = 0; + + /// 磨皮 + virtual float getSmoothing() = 0; + + /// 美白 + virtual float getWhitening() = 0; + + + /// 磨皮 + /// @param smoothing 磨皮 0.0 - 1.0 + virtual void setSmoothing(float smoothing) = 0; + + + /// 美白 + /// @param whitening 美白 0.0 - 1.0 + virtual void setWhitening(float whitening) = 0; virtual TextureInfo renderTexture(TextureInfo inputTexture) = 0; + #if defined(__APPLE__) virtual void processVideoFrame(CVPixelBufferRef pixelbuffer, int64_t timeStamp) = 0; diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.cc b/mediapipe/render/module/beauty/face_mesh_module_imp.cc index 7efcbbb5d..d3e8097ac 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.cc +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.cc @@ -1,4 +1,5 @@ #include "face_mesh_module_imp.h" +#include "mediapipe/render/core/Context.hpp" static const char* kNumFacesInputSidePacket = "num_faces"; static const char* kLandmarksOutputStream = "multi_face_landmarks"; @@ -113,7 +114,7 @@ namespace Opipe _render = nullptr; }); } - + delete _context; _context = nullptr; @@ -121,12 +122,16 @@ namespace Opipe void FaceMeshModuleIMP::suspend() { - _render->suspend(); + if (_render) { + _render->suspend(); + } } void FaceMeshModuleIMP::resume() { - _render->resume(); + if (_render) { + _render->resume(); + } } bool FaceMeshModuleIMP::init(void *env, void *binaryData, @@ -139,11 +144,10 @@ namespace Opipe config.ParseFromArray(binaryData, size); _olaContext = new OlaContext(); _context = _olaContext->glContext(); - _render = new FaceMeshBeautyRender(_context); - - #if defined(__ANDROID__) - _context->initEGLContext(env); - #endif +#if defined(__ANDROID__) + _context->initEGLContext(env); +#endif + _dispatch = std::make_unique(_context, nullptr, nullptr); @@ -155,6 +159,13 @@ namespace Opipe _graph->addFrameOutputStream(kOutputVideo, MPPPacketTypePixelBuffer); #endif _isInit = true; + if (_render == nullptr) { + _dispatch->runSync([&] { + if (_render == nullptr) { + _render = new FaceMeshBeautyRender(_context); + } + }); + } return true; } @@ -162,17 +173,17 @@ namespace Opipe void FaceMeshModuleIMP::setLandmark(NormalizedLandmarkList landmark) { _lastLandmark = std::move(landmark); - if (_lastLandmark.landmark_size() == 0) { -#if defined(__APPLE__) - NSLog(@"没有人脸"); -#endif - } - for (int i = 0; i < _lastLandmark.landmark_size(); ++i) { -#if defined(__APPLE__) - NSLog(@"######## Set Landmark[%d]: (%f, %f, %f)", i, _lastLandmark.landmark(i).x(), - _lastLandmark.landmark(i).y(), _lastLandmark.landmark(i).z()); -#endif - } +// if (_lastLandmark.landmark_size() == 0) { +//#if defined(__APPLE__) +// NSLog(@"没有人脸"); +//#endif +// } +// for (int i = 0; i < _lastLandmark.landmark_size(); ++i) { +//#if defined(__APPLE__) +// NSLog(@"######## Set Landmark[%d]: (%f, %f, %f)", i, _lastLandmark.landmark(i).x(), +// _lastLandmark.landmark(i).y(), _lastLandmark.landmark(i).z()); +//#endif +// } } void FaceMeshModuleIMP::startModule() @@ -233,16 +244,29 @@ namespace Opipe { return textureInfo; } - + if (_render == nullptr) { + _dispatch->runSync([&] { + if (_render == nullptr) { + _render = new FaceMeshBeautyRender(_context); + } + }); + } + + _dispatch->runSync([&] { - textureInfo = _render->renderTexture(inputTexture); +// GLsync sync; +// _dispatch->runAsync([&] { +// _render->renderTexture(inputTexture); +// sync = glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0); +// glFlush(); +// }); +// glWaitSync(sync, 0, GL_TIMEOUT_IGNORED); +// glDeleteSync(sync); + _render->renderTexture(inputTexture); }); - + + textureInfo = _render->outputRenderTexture(inputTexture); return textureInfo; } - // OlaContext* currentContext() { - // return _olaContext; - // } - } diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.h b/mediapipe/render/module/beauty/face_mesh_module_imp.h index 4ce3942e7..edc6206ed 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.h +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.h @@ -80,6 +80,30 @@ namespace Opipe virtual TextureInfo renderTexture(TextureInfo inputTexture) override; virtual void setLandmark(NormalizedLandmarkList landmark); + + /// 磨皮 + float getSmoothing() override { + return _render->getSmoothing(); + } + + /// 美白 + float getWhitening() override { + return _render->getWhitening(); + } + + + /// 磨皮 + /// @param smoothing 磨皮 0.0 - 1.0 + void setSmoothing(float smoothing) { + _render->setSmoothing(smoothing); + } + + + /// 美白 + /// @param whitening 美白 0.0 - 1.0 + void setWhitening(float whitening) { + _render->setWhitening(whitening); + } private: std::unique_ptr _dispatch; diff --git a/mediapipe/render/module/beauty/filters/BilateralAdjustFilter.cpp b/mediapipe/render/module/beauty/filters/BilateralAdjustFilter.cpp index b8916f5e2..c0721da3f 100644 --- a/mediapipe/render/module/beauty/filters/BilateralAdjustFilter.cpp +++ b/mediapipe/render/module/beauty/filters/BilateralAdjustFilter.cpp @@ -79,6 +79,7 @@ namespace Opipe if (factor7 < 0.999) { lowp vec3 mix116Color = mix(inputColor.rgb, mix115Color.rgb, factor7); +// lowp vec3 mix116Color = vec3(1.0); mix12Color = mix(mix116Color.rgb, blurColor.rgb, opacityLimit); } else @@ -129,4 +130,4 @@ namespace Opipe _filterProgram->setUniformValue("filterOpacity", _opacityLimit); return Filter::proceed(frameTime, bUpdateTargets); } -} \ No newline at end of file +} diff --git a/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp b/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp index 56d1d5114..2aea3ed2f 100644 --- a/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp +++ b/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp @@ -64,47 +64,79 @@ namespace Opipe { if (!FilterGroup::init(context)) { return false; } + _lutFilter = LUTFilter::create(context); + _unSharpMaskFilter = UnSharpMaskFilter::create(context); + _unSharpMaskFilter->addTarget(_lutFilter, 0); - _bilateralFilter = BilateralFilter::create(context); - addFilter(_bilateralFilter); - _bilateralAdjustFilter = BilateralAdjustFilter::create(context); addFilter(_bilateralAdjustFilter); - - _unSharpMaskFilter = UnSharpMaskFilter::create(context); - addFilter(_unSharpMaskFilter); - - _lutFilter = LUTFilter::create(context); - _unSharpMaskFilter->addTarget(_lutFilter, 0); _lookUpGroupFilter = FilterGroup::create(context); _lookUpGroupFilter->addFilter(_unSharpMaskFilter); - - _alphaBlendFilter = AlphaBlendFilter::create(context); - _faceDistortFilter = FaceDistortionFilter::create(context); - - _bilateralFilter->addTarget(_bilateralAdjustFilter, 1)-> - addTarget(_alphaBlendFilter, 0); - - _bilateralAdjustFilter->addTarget(_lookUpGroupFilter)-> - addTarget(_alphaBlendFilter, 1)->addTarget(_faceDistortFilter); - + _alphaBlendFilter = AlphaBlendFilter::create(context); +// addFilter(_lookUpGroupFilter); +// addFilter(_lutFilter); + + +// setTerminalFilter(_lutFilter); + + _bilateralFilter = BilateralFilter::create(context); + addFilter(_bilateralFilter); + + _bilateralAdjustFilter->addTarget(_lookUpGroupFilter)->addTarget(_alphaBlendFilter, 1); + + _bilateralFilter->addTarget(_bilateralAdjustFilter, 1)->addTarget(_alphaBlendFilter, 0); + _alphaBlendFilter->setMix(0.0); - + + setTerminalFilter(_alphaBlendFilter); + + _bilateralAdjustFilter->setOpacityLimit(0.6); + _bilateralFilter->setDistanceNormalizationFactor(2.746); + _bilateralFilter->setTexelSpacingMultiplier(2.7); _unSharpMaskFilter->setBlurRadiusInPixel(4.0f, true); _unSharpMaskFilter->setBlurRadiusInPixel(2.0f, false); _unSharpMaskFilter->setIntensity(1.365); - _bilateralAdjustFilter->setOpacityLimit(0.6); - - _bilateralFilter->setDistanceNormalizationFactor(2.746); - _bilateralFilter->setTexelSpacingMultiplier(2.7); - - setTerminalFilter(_faceDistortFilter); +// _bilateralFilter = BilateralFilter::create(context); +// addFilter(_bilateralFilter); +// +// _bilateralAdjustFilter = BilateralAdjustFilter::create(context); +// addFilter(_bilateralAdjustFilter); +// +// _unSharpMaskFilter = UnSharpMaskFilter::create(context); +// +// _lutFilter = LUTFilter::create(context); +// _unSharpMaskFilter->addTarget(_lutFilter, 0); +// +// _lookUpGroupFilter = FilterGroup::create(context); +// _lookUpGroupFilter->addFilter(_unSharpMaskFilter); +// +// _alphaBlendFilter = AlphaBlendFilter::create(context); +// _faceDistortFilter = FaceDistortionFilter::create(context); +// +// +// _bilateralFilter->addTarget(_bilateralAdjustFilter, 1)-> +// addTarget(_alphaBlendFilter, 0); +// +// _bilateralAdjustFilter->addTarget(_lookUpGroupFilter)-> +// addTarget(_alphaBlendFilter, 1)->addTarget(_faceDistortFilter); +// +// _alphaBlendFilter->setMix(0.8); +// +// _unSharpMaskFilter->setBlurRadiusInPixel(4.0f, true); +// _unSharpMaskFilter->setBlurRadiusInPixel(2.0f, false); +// _unSharpMaskFilter->setIntensity(1.365); +// +// _bilateralAdjustFilter->setOpacityLimit(0.6); +// +// _bilateralFilter->setDistanceNormalizationFactor(2.746); +// _bilateralFilter->setTexelSpacingMultiplier(2.7); +// +// setTerminalFilter(_faceDistortFilter); std::vector defaultFace; - return true; @@ -120,11 +152,10 @@ namespace Opipe { void OlaBeautyFilter::setLUTImage(SourceImage *lutImage) { _lutImage = lutImage; + _lutImage->retain(); if (_lutFilter) { - auto *framebuffer = _lutFilter->getFramebuffer(); - framebuffer->resetRetainCount(); - _lutImage->retain(); - _lutImage->addTarget(_lutFilter, 1, true); + auto *framebuffer = lutImage->getFramebuffer(); + _lutFilter->setInputFramebuffer(framebuffer, NoRotation, 1, true); } } @@ -139,21 +170,38 @@ namespace Opipe { } void OlaBeautyFilter::setSmoothing(float smoothing) { - smoothing = smoothing < -1 ? -1 : smoothing; - smoothing = smoothing > 1 ? 1 : smoothing; - _bilateralAdjustFilter->setOpacityLimit(smoothing); + if (_bilateralAdjustFilter == nullptr) { + return; + } + + if (smoothing == 0.0) { + _bilateralAdjustFilter->setEnable(false); + } else { + _bilateralAdjustFilter->setEnable(true); + _bilateralAdjustFilter->setOpacityLimit(smoothing); + } } float OlaBeautyFilter::getSmoothing() { - return _bilateralAdjustFilter->getOpacityLimit(); + if (_bilateralAdjustFilter) { + return _bilateralAdjustFilter->getOpacityLimit(); + } + return 0.0; + } void OlaBeautyFilter::setWhitening(float whitening) { - _alphaBlendFilter->setMix(whitening); + if (_alphaBlendFilter) { + _alphaBlendFilter->setMix(whitening); + } + _lutFilter->setStep(whitening); } float OlaBeautyFilter::getWhitening() { - return _alphaBlendFilter->getMix(); + if (_alphaBlendFilter) { + return _alphaBlendFilter->getMix(); + } + return 0.0; } } diff --git a/mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp b/mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp index f52583dff..e06213f43 100644 --- a/mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp +++ b/mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp @@ -108,7 +108,7 @@ namespace Opipe { } void UnSharpMaskFilter::setIntensity(float intensity) { - ((UnSharpMaskFilter *)_unsharpMaskFilter)->setIntensity(intensity); + ((UnSharpFilter *)_unsharpMaskFilter)->setIntensity(intensity); } void UnSharpMaskFilter::setBlurRadiusInPixel(float blurRadius, diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate index 97d10fe35..3f5da3003 100644 Binary files a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate and b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcshareddata/xcschemes/OpipeBeautyModuleExample.xcscheme b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcshareddata/xcschemes/OpipeBeautyModuleExample.xcscheme new file mode 100644 index 000000000..03b08c48e --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcshareddata/xcschemes/OpipeBeautyModuleExample.xcscheme @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist index f9289495c..843d18248 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist @@ -10,5 +10,13 @@ 7 + SuppressBuildableAutocreation + + 36B23935288934B100A41D9E + + primary + + + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard index 87df427f8..e6a33c713 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard @@ -16,14 +16,29 @@ + + + + + + + + + + + + + + + - + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm index ab70ac545..a961107fa 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm @@ -50,6 +50,10 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { @implementation ViewController +- (void)dealloc { + [[OlaFaceUnity sharedInstance] dispose]; +} + - (void)viewDidLoad { [super viewDidLoad]; self.pixelFormatType = kCVPixelFormatType_420YpCbCr8BiPlanarFullRange; @@ -74,10 +78,15 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { } +- (void)viewWillDisappear:(BOOL)animated { + [[OlaFaceUnity sharedInstance] suspend]; +} + - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self startCapture]; + [[OlaFaceUnity sharedInstance] resume]; } - (void)setupSession { @@ -132,8 +141,8 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { dimensions.height ==[[outputSettings objectForKey:@"Height"] intValue]) { if (YES == [self.captureDevice lockForConfiguration:NULL] ) { self.captureDevice.activeFormat = vFormat; - [self.captureDevice setActiveVideoMinFrameDuration:CMTimeMake(1,24)]; - [self.captureDevice setActiveVideoMaxFrameDuration:CMTimeMake(1,24)]; + [self.captureDevice setActiveVideoMinFrameDuration:CMTimeMake(1,30)]; + [self.captureDevice setActiveVideoMaxFrameDuration:CMTimeMake(1,30)]; [self.captureDevice unlockForConfiguration]; } } @@ -142,10 +151,12 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { - (void)setupRenderView { if(!self.renderView){ - _renderView = [[OlaMTLCameraRenderView alloc] initWithFrame:self.view.bounds]; + _renderView = [[OlaMTLCameraRenderView alloc] initWithFrame:self.view.bounds shareContext:[[OlaFaceUnity sharedInstance] currentContext]]; _renderView.cameraDelegate = self; + _renderView.preferredFramesPerSecond = 30; [self.renderView setBackgroundColor:[UIColor colorWithRed:0.9f green:0.9f blue:0.9f alpha:1.0f]]; [self.view addSubview:self.renderView]; + [self.view sendSubviewToBack:self.renderView]; } } @@ -249,8 +260,15 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { { [[OlaFaceUnity sharedInstance] processVideoFrame:onScreenTexture.renderTarget timeStamp:frameTime]; - - return onScreenTexture.surfaceID; + FaceTextureInfo inputTexture; + inputTexture.width = onScreenTexture.size.width; + inputTexture.height = onScreenTexture.size.height; + inputTexture.textureId = onScreenTexture.openGLTexture; + inputTexture.ioSurfaceId = onScreenTexture.surfaceID; + inputTexture.frameTime = frameTime; + FaceTextureInfo result = [[OlaFaceUnity sharedInstance] render:inputTexture]; + NSLog(@"result ioSurfaceId:%d", result.ioSurfaceId); + return result.ioSurfaceId; } @@ -271,4 +289,10 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { } +- (IBAction)beautyChanged:(UISlider *)sender +{ + [OlaFaceUnity sharedInstance].whiten = sender.value; + [OlaFaceUnity sharedInstance].smooth = sender.value; +} + @end diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj index f55e08b29..311823b9e 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj @@ -2617,8 +2617,8 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, + 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0; @@ -2646,18 +2646,18 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5083BDB1A3300000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000E /* Sources */, + 4A9C8A58000000000000000F /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AAB070CC500000000 /* PBXTargetDependency */, + 285B8B9AAB070CC500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, ); name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0; @@ -2669,7 +2669,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5084E652AAB00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000F /* Sources */, + 4A9C8A58000000000000000A /* Sources */, ); buildRules = ( ); @@ -2692,9 +2692,9 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, 285B8B9A148AEA4700000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, ); name = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; productName = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; @@ -2705,26 +2705,26 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DF63089600000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000B /* Sources */, + 4A9C8A58000000000000000C /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A48F8627F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, ); name = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; productName = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; @@ -2803,16 +2803,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508D42124C800000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000002A /* Sources */, + 4A9C8A58000000000000002B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, ); name = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0; productName = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0; @@ -2839,7 +2839,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5084BCDEF5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000049 /* Sources */, + 4A9C8A580000000000000047 /* Sources */, ); buildRules = ( ); @@ -2872,7 +2872,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000047 /* Sources */, + 4A9C8A580000000000000048 /* Sources */, ); buildRules = ( ); @@ -2888,7 +2888,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5086FD1C2A400000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003D /* Sources */, + 4A9C8A58000000000000003C /* Sources */, ); buildRules = ( ); @@ -2923,7 +2923,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004D /* Sources */, + 4A9C8A58000000000000004C /* Sources */, ); buildRules = ( ); @@ -2939,26 +2939,26 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508734E4FE900000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001B /* Sources */, + 4A9C8A58000000000000001C /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9ADBC0365300000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, ); name = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; productName = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; @@ -3011,11 +3011,11 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A0F58F30900000000 /* PBXTargetDependency */, + 285B8B9A216C14B900000000 /* PBXTargetDependency */, 285B8B9A0F58F30900000000 /* PBXTargetDependency */, 285B8B9A0F58F30900000000 /* PBXTargetDependency */, 285B8B9A9CC89BB300000000 /* PBXTargetDependency */, 285B8B9A216C14B900000000 /* PBXTargetDependency */, - 285B8B9A216C14B900000000 /* PBXTargetDependency */, ); name = _idx_cpu_op_resolver_519CBACD_ios_min15.5; productName = _idx_cpu_op_resolver_519CBACD_ios_min15.5; @@ -3032,12 +3032,12 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A4A0F047D00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A4A0F047D00000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_calculator_FF109E68_ios_min15.5; productName = _idx_image_to_tensor_calculator_FF109E68_ios_min15.5; @@ -3048,29 +3048,29 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5087AB0E97E00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003B /* Sources */, + 4A9C8A58000000000000003D /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF84C49B100000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AF84C49B100000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AEE4F724300000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, ); name = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; productName = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; @@ -3089,8 +3089,8 @@ 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5; productName = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5; @@ -3101,7 +3101,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000039 /* Sources */, + 4A9C8A580000000000000038 /* Sources */, ); buildRules = ( ); @@ -3117,7 +3117,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508626F7F6F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000006 /* Sources */, + 4A9C8A580000000000000009 /* Sources */, ); buildRules = ( ); @@ -3125,9 +3125,9 @@ 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; productName = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; @@ -3162,9 +3162,9 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5; productName = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5; @@ -3192,7 +3192,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5081DAB3B6400000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000C /* Sources */, + 4A9C8A58000000000000000D /* Sources */, ); buildRules = ( ); @@ -3215,10 +3215,10 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A20F64D9900000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A20F64D9900000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5; productName = _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5; @@ -3235,9 +3235,9 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, + 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, 285B8B9A8489C38D00000000 /* PBXTargetDependency */, - 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, - 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, ); name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; @@ -3254,8 +3254,8 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, ); name = _idx_MPPGraphGPUData_39C9C70C_ios_min11.0; @@ -3274,18 +3274,18 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, @@ -3308,31 +3308,31 @@ 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A605975F300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A605975F300000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, ); name = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; productName = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; @@ -3349,9 +3349,9 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A94BE0ED500000000 /* PBXTargetDependency */, 285B8B9A2E1AEAFB00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5; productName = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5; @@ -3362,7 +3362,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5089DA663AF00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000035 /* Sources */, + 4A9C8A580000000000000036 /* Sources */, ); buildRules = ( ); @@ -3400,9 +3400,9 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, ); name = _idx_scheduler_queue_364511B6_ios_min15.5; @@ -3430,21 +3430,21 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5081D89926500000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000009 /* Sources */, + 4A9C8A580000000000000001 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A0552442F00000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9AAB070CC500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9A043D6EB900000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A0552442F00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, ); name = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; productName = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; @@ -3455,7 +3455,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5084D89B18800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000014 /* Sources */, + 4A9C8A580000000000000016 /* Sources */, ); buildRules = ( ); @@ -3511,7 +3511,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5082CF4B73A00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000017 /* Sources */, + 4A9C8A580000000000000013 /* Sources */, ); buildRules = ( ); @@ -3528,7 +3528,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508ADC0634800000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000018 /* Sources */, + 4A9C8A580000000000000014 /* Sources */, ); buildRules = ( ); @@ -3544,7 +3544,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5085C39F12800000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003E /* Sources */, + 4A9C8A58000000000000003F /* Sources */, ); buildRules = ( ); @@ -3560,34 +3560,34 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508509C6EAD00000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000A /* Sources */, + 4A9C8A58000000000000000B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A091FB26B00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, ); name = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; productName = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; @@ -3631,7 +3631,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5085E3AF8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000016 /* Sources */, + 4A9C8A580000000000000018 /* Sources */, ); buildRules = ( ); @@ -3639,9 +3639,9 @@ 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, ); name = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; productName = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; @@ -3652,27 +3652,27 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50837CF1CB300000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000001 /* Sources */, + 4A9C8A580000000000000003 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9ACC49096B00000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, ); name = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; @@ -3690,8 +3690,8 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5; productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5; @@ -3718,7 +3718,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000002C /* Sources */, + 4A9C8A580000000000000028 /* Sources */, ); buildRules = ( ); @@ -3756,12 +3756,12 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEF9E075500000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AEF9E075500000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, ); name = _idx_olamodule_common_library_63E72567_ios_min15.5; productName = _idx_olamodule_common_library_63E72567_ios_min15.5; @@ -3772,24 +3772,24 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508AB21E79200000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000002 /* Sources */, + 4A9C8A580000000000000004 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9ACC49096B00000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; @@ -3801,18 +3801,18 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000027 /* Sources */, + 4A9C8A580000000000000029 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A0552442F00000000 /* PBXTargetDependency */, 285B8B9A043D6EB900000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A0552442F00000000 /* PBXTargetDependency */, 285B8B9AA616095700000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, ); name = _idx_olamodule_common_library_63E72567_ios_min11.0; productName = _idx_olamodule_common_library_63E72567_ios_min11.0; @@ -3829,13 +3829,13 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A5D24269700000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, - 285B8B9A60F40B8100000000 /* PBXTargetDependency */, 285B8B9AF43963A700000000 /* PBXTargetDependency */, - 285B8B9A3E081CF900000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A60F40B8100000000 /* PBXTargetDependency */, 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9A3E081CF900000000 /* PBXTargetDependency */, + 285B8B9A5D24269700000000 /* PBXTargetDependency */, + 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, ); name = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; productName = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; @@ -3852,12 +3852,12 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A4EC3F25F00000000 /* PBXTargetDependency */, - 285B8B9A0552442F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A0552442F00000000 /* PBXTargetDependency */, + 285B8B9A4EC3F25F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; productName = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; @@ -3874,13 +3874,13 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A2C307FC300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5; productName = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5; @@ -3891,7 +3891,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508D5E19DD800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000004 /* Sources */, + 4A9C8A580000000000000007 /* Sources */, ); buildRules = ( ); @@ -3914,13 +3914,13 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9A3CEC689D00000000 /* PBXTargetDependency */, - 285B8B9AF84C49B100000000 /* PBXTargetDependency */, - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, - 285B8B9A717FBD3300000000 /* PBXTargetDependency */, 285B8B9AC180231D00000000 /* PBXTargetDependency */, + 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, + 285B8B9A3CEC689D00000000 /* PBXTargetDependency */, + 285B8B9A717FBD3300000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9AF84C49B100000000 /* PBXTargetDependency */, ); name = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; productName = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; @@ -3937,11 +3937,11 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A148AEA4700000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A148AEA4700000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, ); name = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; productName = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; @@ -3974,11 +3974,11 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9AF437D55300000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A192D58FB00000000 /* PBXTargetDependency */, + 285B8B9AAB070CC500000000 /* PBXTargetDependency */, + 285B8B9AF437D55300000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0; productName = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0; @@ -3995,10 +3995,10 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, 285B8B9A7E908C2900000000 /* PBXTargetDependency */, 285B8B9A70815F2D00000000 /* PBXTargetDependency */, 285B8B9A70815F2D00000000 /* PBXTargetDependency */, + 285B8B9A70815F2D00000000 /* PBXTargetDependency */, ); name = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; productName = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; @@ -4015,8 +4015,8 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A019362DD00000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A019362DD00000000 /* PBXTargetDependency */, 285B8B9AE4F68A4900000000 /* PBXTargetDependency */, ); name = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0; @@ -4045,7 +4045,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DB4002F000000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004C /* Sources */, + 4A9C8A58000000000000004D /* Sources */, ); buildRules = ( ); @@ -4061,7 +4061,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50883C6DEA900000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000008 /* Sources */, + 4A9C8A580000000000000006 /* Sources */, ); buildRules = ( ); @@ -4077,7 +4077,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50845659DC900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000048 /* Sources */, + 4A9C8A580000000000000049 /* Sources */, ); buildRules = ( ); @@ -4099,8 +4099,8 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); @@ -4113,40 +4113,40 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5080F04FD2900000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000028 /* Sources */, + 4A9C8A58000000000000002A /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9AECB1197500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9A12002F2D00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9AECB1197500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, ); name = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0; productName = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0; @@ -4157,7 +4157,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5081FB54A7400000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000D /* Sources */, + 4A9C8A58000000000000000E /* Sources */, ); buildRules = ( ); @@ -4174,33 +4174,33 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508A9596AF100000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001A /* Sources */, + 4A9C8A58000000000000001B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A22E7A19300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; @@ -4218,11 +4218,11 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A721498C500000000 /* PBXTargetDependency */, 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A721498C500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; productName = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; @@ -4257,8 +4257,8 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0; productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0; @@ -4275,8 +4275,8 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, ); name = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; productName = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; @@ -4294,11 +4294,11 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9AE60E967B00000000 /* PBXTargetDependency */, 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9A192D58FB00000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9AE60E967B00000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_calculator_FF109E68_ios_min11.0; productName = _idx_image_to_tensor_calculator_FF109E68_ios_min11.0; @@ -4309,7 +4309,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DB9B2BF000000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000005 /* Sources */, + 4A9C8A580000000000000008 /* Sources */, ); buildRules = ( ); @@ -4331,11 +4331,11 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A270212EF00000000 /* PBXTargetDependency */, 285B8B9ADBAB600300000000 /* PBXTargetDependency */, 285B8B9A8B4CD5DF00000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, 285B8B9AF437D55300000000 /* PBXTargetDependency */, - 285B8B9A270212EF00000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_metal_9450E505_ios_min11.0; productName = _idx_inference_calculator_metal_9450E505_ios_min11.0; @@ -4346,7 +4346,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508D7525C8000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003F /* Sources */, + 4A9C8A58000000000000003B /* Sources */, ); buildRules = ( ); @@ -4368,10 +4368,10 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, 285B8B9A4581F61300000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, 285B8B9AEE4F724300000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5; @@ -4383,14 +4383,14 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508EE0A722C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000036 /* Sources */, + 4A9C8A580000000000000039 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, ); name = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; productName = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; @@ -4407,10 +4407,10 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, 285B8B9AD4B7599D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, + 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, ); name = _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5; productName = _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5; @@ -4421,7 +4421,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508A3588D7D00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000007 /* Sources */, + 4A9C8A580000000000000005 /* Sources */, ); buildRules = ( ); @@ -4445,11 +4445,11 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AEF9E075500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9AEF9E075500000000 /* PBXTargetDependency */, 285B8B9A0BF0E74100000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, ); name = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; productName = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; @@ -4460,16 +4460,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000002B /* Sources */, + 4A9C8A580000000000000027 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A9CD320B700000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, 285B8B9A7E674A3900000000 /* PBXTargetDependency */, 285B8B9A9CD320B700000000 /* PBXTargetDependency */, + 285B8B9A9CD320B700000000 /* PBXTargetDependency */, ); name = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; productName = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; @@ -4496,7 +4496,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5088CF1146C00000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000015 /* Sources */, + 4A9C8A580000000000000017 /* Sources */, ); buildRules = ( ); @@ -4519,26 +4519,26 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9A3CEC689D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, + 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A3CEC689D00000000 /* PBXTargetDependency */, - 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, ); name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5; productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5; @@ -4556,12 +4556,12 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9A6729A1D100000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0; productName = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0; @@ -4572,7 +4572,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5080D167B7100000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001C /* Sources */, + 4A9C8A58000000000000001D /* Sources */, ); buildRules = ( ); @@ -4595,18 +4595,18 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; @@ -4625,8 +4625,8 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A721498C500000000 /* PBXTargetDependency */, - 285B8B9A762E872100000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, + 285B8B9A762E872100000000 /* PBXTargetDependency */, ); name = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; productName = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; @@ -4637,23 +4637,23 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5080908381B00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000003 /* Sources */, + 4A9C8A580000000000000002 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9ACC49096B00000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, ); name = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; productName = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; @@ -4687,12 +4687,12 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A1838F83F00000000 /* PBXTargetDependency */, 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, + 285B8B9A1838F83F00000000 /* PBXTargetDependency */, 285B8B9A9CDDB50D00000000 /* PBXTargetDependency */, 285B8B9A1838F83F00000000 /* PBXTargetDependency */, - 285B8B9A1838F83F00000000 /* PBXTargetDependency */, - 285B8B9A1838F83F00000000 /* PBXTargetDependency */, ); name = _idx_cpu_op_resolver_519CBACD_ios_min11.0; productName = _idx_cpu_op_resolver_519CBACD_ios_min11.0; @@ -4709,10 +4709,10 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, 285B8B9ADF5731D100000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A192D58FB00000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0; productName = _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0; @@ -4742,16 +4742,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508735E8FC000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000029 /* Sources */, + 4A9C8A58000000000000002C /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, ); name = _idx_scheduler_queue_364511B6_ios_min11.0; productName = _idx_scheduler_queue_364511B6_ios_min11.0; @@ -4762,19 +4762,19 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5086673135900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001E /* Sources */, + 4A9C8A58000000000000001F /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AEE4F724300000000 /* PBXTargetDependency */, 285B8B9AEE4F724300000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, ); name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5; productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5; @@ -4785,7 +4785,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5088E413F3200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001D /* Sources */, + 4A9C8A58000000000000001E /* Sources */, ); buildRules = ( ); @@ -4802,7 +4802,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5080DDBE57E00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001F /* Sources */, + 4A9C8A58000000000000001A /* Sources */, ); buildRules = ( ); @@ -4825,15 +4825,15 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AEF9E075500000000 /* PBXTargetDependency */, 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9AEE4F724300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, ); name = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5; productName = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5; @@ -4861,22 +4861,22 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50867D1B86E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000013 /* Sources */, + 4A9C8A580000000000000015 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, ); name = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; @@ -4905,29 +4905,29 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5089778129500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000038 /* Sources */, + 4A9C8A580000000000000035 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, 285B8B9A12002F2D00000000 /* PBXTargetDependency */, + 285B8B9A5D24269700000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, 285B8B9AAB070CC500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A5D24269700000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, ); name = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; productName = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; @@ -4938,7 +4938,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5089F87702200000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003C /* Sources */, + 4A9C8A58000000000000003E /* Sources */, ); buildRules = ( ); @@ -4978,26 +4978,26 @@ dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9AA616095700000000 /* PBXTargetDependency */, + 285B8B9AA616095700000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A762E872100000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9AF43963A700000000 /* PBXTargetDependency */, - 285B8B9AA616095700000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9AA616095700000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A762E872100000000 /* PBXTargetDependency */, ); name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0; productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0; @@ -5189,6 +5189,38 @@ runOnlyForDeploymentPostprocessing = 0; }; 4A9C8A580000000000000001 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301B6988F9900000000 /* image.cc in formats */, + FF9503010E7AA6A100000000 /* gl_context.cc in gpu */, + FF9503015361890F00000000 /* gl_context_eagl.cc in gpu */, + FF9503011615959C00000000 /* gpu_buffer_multi_pool.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000002 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301202F72AF00000000 /* util.cc in objc */, + FF9503018E62014A00000000 /* calculator_contract.cc in framework */, + FF950301095EF97200000000 /* fill_packet_set.cc in tool */, + FF9503012C20ABC800000000 /* graph_service_manager.cc in framework */, + FF950301B3D8E01500000000 /* input_side_packet_handler.cc in framework */, + FF950301196F87BE00000000 /* input_stream_manager.cc in framework */, + FF9503015176F86500000000 /* input_stream_shard.cc in framework */, + FF950301EFCD23DE00000000 /* node.cc in api2 */, + FF950301D265CD3E00000000 /* output_side_packet_impl.cc in framework */, + FF950301051CE57300000000 /* output_stream_shard.cc in framework */, + FF9503015369E8AC00000000 /* packet.cc in framework */, + FF950301C0242BD100000000 /* packet.cc in api2 */, + FF950301EC826FBE00000000 /* packet_type.cc in framework */, + FF950301CB59887700000000 /* subgraph.cc in framework */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000003 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5201,7 +5233,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000002 /* Sources */ = { + 4A9C8A580000000000000004 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5228,57 +5260,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000003 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301202F72AF00000000 /* util.cc in objc */, - FF9503018E62014A00000000 /* calculator_contract.cc in framework */, - FF950301095EF97200000000 /* fill_packet_set.cc in tool */, - FF9503012C20ABC800000000 /* graph_service_manager.cc in framework */, - FF950301B3D8E01500000000 /* input_side_packet_handler.cc in framework */, - FF950301196F87BE00000000 /* input_stream_manager.cc in framework */, - FF9503015176F86500000000 /* input_stream_shard.cc in framework */, - FF950301EFCD23DE00000000 /* node.cc in api2 */, - FF950301D265CD3E00000000 /* output_side_packet_impl.cc in framework */, - FF950301051CE57300000000 /* output_stream_shard.cc in framework */, - FF9503015369E8AC00000000 /* packet.cc in framework */, - FF950301C0242BD100000000 /* packet.cc in api2 */, - FF950301EC826FBE00000000 /* packet_type.cc in framework */, - FF950301CB59887700000000 /* subgraph.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000004 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503010DAD0F4C00000000 /* timestamp.cc in framework */, - FF95030113D967B800000000 /* collection_item_id.cc in framework */, - FF9503016EE5C41200000000 /* cpu_util.cc in util */, - FF9503017B0DE23500000000 /* file_helpers.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4A9C8A580000000000000005 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017CA09C8900000000 /* file_path.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000006 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503016DADEE7000000000 /* image_frame.cc in formats */, - FF950301CF0DF08C00000000 /* graph_tracer.cc in profiler */, - FF9503019CBDC5A500000000 /* trace_builder.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000007 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5295,7 +5277,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000008 /* Sources */ = { + 4A9C8A580000000000000006 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5306,18 +5288,44 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4A9C8A580000000000000007 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503010DAD0F4C00000000 /* timestamp.cc in framework */, + FF95030113D967B800000000 /* collection_item_id.cc in framework */, + FF9503016EE5C41200000000 /* cpu_util.cc in util */, + FF9503017B0DE23500000000 /* file_helpers.cc in deps */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000008 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503017CA09C8900000000 /* file_path.cc in deps */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4A9C8A580000000000000009 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301B6988F9900000000 /* image.cc in formats */, - FF9503010E7AA6A100000000 /* gl_context.cc in gpu */, - FF9503015361890F00000000 /* gl_context_eagl.cc in gpu */, - FF9503011615959C00000000 /* gpu_buffer_multi_pool.cc in gpu */, + FF9503016DADEE7000000000 /* image_frame.cc in formats */, + FF950301CF0DF08C00000000 /* graph_tracer.cc in profiler */, + FF9503019CBDC5A500000000 /* trace_builder.cc in profiler */, ); runOnlyForDeploymentPostprocessing = 0; }; 4A9C8A58000000000000000A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503011D16CB6700000000 /* pixel_buffer_pool_util.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000000B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5332,7 +5340,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000B /* Sources */ = { + 4A9C8A58000000000000000C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5342,7 +5350,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000C /* Sources */ = { + 4A9C8A58000000000000000D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5351,7 +5359,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000D /* Sources */ = { + 4A9C8A58000000000000000E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5360,7 +5368,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000E /* Sources */ = { + 4A9C8A58000000000000000F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5372,14 +5380,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503011D16CB6700000000 /* pixel_buffer_pool_util.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4A9C8A580000000000000010 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; @@ -5430,6 +5430,34 @@ runOnlyForDeploymentPostprocessing = 0; }; 4A9C8A580000000000000013 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301EF2DB52100000001 /* topologicalsorter.cc in deps */, + FF950301DB9D1C2A00000001 /* clock.cc in deps */, + FF950301EE3C320400000001 /* monotonic_clock.cc in deps */, + FF950301CD235A4400000001 /* counter_factory.cc in framework */, + FF9503014FE9977200000001 /* registration.cc in deps */, + FF950301412CF91400000001 /* ret_check.cc in deps */, + FF9503010F561D5C00000001 /* status.cc in deps */, + FF9503016E1A9C2D00000001 /* status_builder.cc in deps */, + FF95030113274D1100000001 /* status_util.cc in tool */, + FF950301894A474700000001 /* threadpool_pthread_impl.cc in deps */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000014 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503014F3A671800000001 /* registration_token.cc in deps */, + FF9503015CAB504600000001 /* math.cpp in core */, + FF9503012D3894B500000001 /* GPUImageUtil.cpp in core */, + FF950301EA0F1F1F00000001 /* Ref.cpp in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000015 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5450,7 +5478,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000014 /* Sources */ = { + 4A9C8A580000000000000016 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5461,7 +5489,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000015 /* Sources */ = { + 4A9C8A580000000000000017 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5469,7 +5497,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000016 /* Sources */ = { + 4A9C8A580000000000000018 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5479,34 +5507,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000017 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301EF2DB52100000001 /* topologicalsorter.cc in deps */, - FF950301DB9D1C2A00000001 /* clock.cc in deps */, - FF950301EE3C320400000001 /* monotonic_clock.cc in deps */, - FF950301CD235A4400000001 /* counter_factory.cc in framework */, - FF9503014FE9977200000001 /* registration.cc in deps */, - FF950301412CF91400000001 /* ret_check.cc in deps */, - FF9503010F561D5C00000001 /* status.cc in deps */, - FF9503016E1A9C2D00000001 /* status_builder.cc in deps */, - FF95030113274D1100000001 /* status_util.cc in tool */, - FF950301894A474700000001 /* threadpool_pthread_impl.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000018 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503014F3A671800000001 /* registration_token.cc in deps */, - FF9503015CAB504600000001 /* math.cpp in core */, - FF9503012D3894B500000001 /* GPUImageUtil.cpp in core */, - FF950301EA0F1F1F00000001 /* Ref.cpp in core */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4A9C8A580000000000000019 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; @@ -5519,6 +5519,14 @@ runOnlyForDeploymentPostprocessing = 0; }; 4A9C8A58000000000000001A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503011D16CB6700000001 /* pixel_buffer_pool_util.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000001B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5533,7 +5541,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001B /* Sources */ = { + 4A9C8A58000000000000001C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5543,7 +5551,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001C /* Sources */ = { + 4A9C8A58000000000000001D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5552,7 +5560,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001D /* Sources */ = { + 4A9C8A58000000000000001E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5561,7 +5569,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001E /* Sources */ = { + 4A9C8A58000000000000001F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5573,14 +5581,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503011D16CB6700000001 /* pixel_buffer_pool_util.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4A9C8A580000000000000020 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; @@ -5645,42 +5645,6 @@ runOnlyForDeploymentPostprocessing = 0; }; 4A9C8A580000000000000027 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017071A1E200000000 /* ola_graph.cc in common */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000028 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301908FF76600000000 /* previous_loopback_calculator.cc in core */, - FF950301FC0D516900000000 /* calculator_graph.cc in framework */, - FF9503012418B90200000000 /* scheduler.cc in framework */, - FF950301FFFFBBA500000000 /* header_util.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000029 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301A3BD02C100000000 /* scheduler_queue.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301892D264500000000 /* image_properties_calculator.cc in image */, - FF950301D36B7DD000000000 /* gpu_service.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5737,7 +5701,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002C /* Sources */ = { + 4A9C8A580000000000000028 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5749,6 +5713,42 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4A9C8A580000000000000029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503017071A1E200000000 /* ola_graph.cc in common */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000002A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301908FF76600000000 /* previous_loopback_calculator.cc in core */, + FF950301FC0D516900000000 /* calculator_graph.cc in framework */, + FF9503012418B90200000000 /* scheduler.cc in framework */, + FF950301FFFFBBA500000000 /* header_util.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000002B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301892D264500000000 /* image_properties_calculator.cc in image */, + FF950301D36B7DD000000000 /* gpu_service.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000002C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301A3BD02C100000000 /* scheduler_queue.cc in framework */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4A9C8A58000000000000002D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; @@ -5877,7 +5877,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503017D2972A300000000 /* shader_util.cc in gpu */, + FF950301CDB6653400000000 /* gl_calculator_helper.cc in gpu */, + FF950301646C577900000000 /* gl_calculator_helper_impl_common.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5885,8 +5886,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030104BA59E200000000 /* location.cc in formats */, - FF950301D3E5087100000000 /* image_frame_opencv.cc in formats */, + FF9503017D2972A300000000 /* shader_util.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5902,8 +5902,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301CDB6653400000000 /* gl_calculator_helper.cc in gpu */, - FF950301646C577900000000 /* gl_calculator_helper_impl_common.cc in gpu */, + FF9503014A8EF4EF00000000 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5911,7 +5910,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503014A8EF4EF00000000 /* annotation_renderer.cc in util */, + FF95030104BA59E200000000 /* location.cc in formats */, + FF950301D3E5087100000000 /* image_frame_opencv.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5927,20 +5927,11 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301CDB6653400000001 /* gl_calculator_helper.cc in gpu */, - FF950301646C577900000001 /* gl_calculator_helper_impl_common.cc in gpu */, + FF9503014A8EF4EF00000001 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; 4A9C8A58000000000000003C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017D2972A300000001 /* shader_util.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5949,11 +5940,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4A9C8A58000000000000003D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301CDB6653400000001 /* gl_calculator_helper.cc in gpu */, + FF950301646C577900000001 /* gl_calculator_helper_impl_common.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4A9C8A58000000000000003E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301664209C000000001 /* gl_simple_shaders.cc in gpu */, + FF9503017D2972A300000001 /* shader_util.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5961,7 +5961,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503014A8EF4EF00000001 /* annotation_renderer.cc in util */, + FF950301664209C000000001 /* gl_simple_shaders.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6025,8 +6025,9 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030118A3906A00000000 /* max_unpooling.cc in operations */, - FF950301042A0E6500000000 /* max_pool_argmax.cc in operations */, + FF9503017C35124F00000000 /* transform_tensor_bilinear.cc in operations */, + FF950301105326A800000000 /* landmarks_to_transform_matrix.cc in operations */, + FF950301C578A56100000000 /* transform_landmarks.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6034,7 +6035,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F3F047F600000000 /* transpose_conv_bias.cc in operations */, + FF95030118A3906A00000000 /* max_unpooling.cc in operations */, + FF950301042A0E6500000000 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6042,9 +6044,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503017C35124F00000000 /* transform_tensor_bilinear.cc in operations */, - FF950301105326A800000000 /* landmarks_to_transform_matrix.cc in operations */, - FF950301C578A56100000000 /* transform_landmarks.cc in operations */, + FF950301F3F047F600000000 /* transpose_conv_bias.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6070,7 +6070,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F3F047F600000001 /* transpose_conv_bias.cc in operations */, + FF95030118A3906A00000001 /* max_unpooling.cc in operations */, + FF950301042A0E6500000001 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6078,8 +6079,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030118A3906A00000001 /* max_unpooling.cc in operations */, - FF950301042A0E6500000001 /* max_pool_argmax.cc in operations */, + FF950301F3F047F600000001 /* transpose_conv_bias.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6852,7 +6852,7 @@ GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "--version"; OTHER_LDFLAGS = "--version"; @@ -6939,29 +6939,16 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; C1A2A5811882E1BB00000004 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000005 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6974,46 +6961,33 @@ }; name = Debug; }; + C1A2A5811882E1BB00000005 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; C1A2A5811882E1BB00000006 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; + PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; C1A2A5811882E1BB00000007 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_file_path_E61EA0A1_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000008 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000009 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7026,7 +7000,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000000A /* Debug */ = { + C1A2A5811882E1BB00000008 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7039,20 +7013,59 @@ }; name = Debug; }; + C1A2A5811882E1BB00000009 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000000A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_path_E61EA0A1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; C1A2A5811882E1BB0000000B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; C1A2A5811882E1BB0000000C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000000D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7065,7 +7078,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000000D /* Debug */ = { + C1A2A5811882E1BB0000000E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7078,7 +7091,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000000E /* Debug */ = { + C1A2A5811882E1BB0000000F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7091,7 +7104,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000000F /* Debug */ = { + C1A2A5811882E1BB00000010 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7104,7 +7117,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000010 /* Debug */ = { + C1A2A5811882E1BB00000011 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7117,19 +7130,6 @@ }; name = Debug; }; - C1A2A5811882E1BB00000011 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; C1A2A5811882E1BB00000012 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -7170,6 +7170,32 @@ name = Debug; }; C1A2A5811882E1BB00000015 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000016 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000017 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7182,7 +7208,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000016 /* Debug */ = { + C1A2A5811882E1BB00000018 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7195,7 +7221,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000017 /* Debug */ = { + C1A2A5811882E1BB00000019 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7208,7 +7234,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000018 /* Debug */ = { + C1A2A5811882E1BB0000001A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7221,32 +7247,6 @@ }; name = Debug; }; - C1A2A5811882E1BB00000019 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000001A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; C1A2A5811882E1BB0000001B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -7261,6 +7261,19 @@ name = Debug; }; C1A2A5811882E1BB0000001C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000001D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7273,7 +7286,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000001D /* Debug */ = { + C1A2A5811882E1BB0000001E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7286,7 +7299,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000001E /* Debug */ = { + C1A2A5811882E1BB0000001F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7299,7 +7312,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000001F /* Debug */ = { + C1A2A5811882E1BB00000020 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7312,7 +7325,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000020 /* Debug */ = { + C1A2A5811882E1BB00000021 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7325,19 +7338,6 @@ }; name = Debug; }; - C1A2A5811882E1BB00000021 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; C1A2A5811882E1BB00000022 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -7431,6 +7431,32 @@ name = Debug; }; C1A2A5811882E1BB00000029 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7443,7 +7469,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000002A /* Debug */ = { + C1A2A5811882E1BB0000002C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7456,20 +7482,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000002B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000002C /* Debug */ = { + C1A2A5811882E1BB0000002D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7482,27 +7495,14 @@ }; name = Debug; }; - C1A2A5811882E1BB0000002D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; C1A2A5811882E1BB0000002E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; + OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7618,10 +7618,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7630,12 +7630,11 @@ C1A2A5811882E1BB00000038 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7657,11 +7656,12 @@ C1A2A5811882E1BB0000003A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7672,10 +7672,10 @@ buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; + PRODUCT_NAME = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7698,30 +7698,18 @@ C1A2A5811882E1BB0000003D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; C1A2A5811882E1BB0000003E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000003F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7735,14 +7723,27 @@ }; name = Debug; }; + C1A2A5811882E1BB0000003F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; C1A2A5811882E1BB00000040 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; + PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7751,12 +7752,11 @@ C1A2A5811882E1BB00000041 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7857,10 +7857,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7870,10 +7870,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7883,10 +7883,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; + PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7922,10 +7922,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7935,10 +7935,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; + PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8432,7 +8432,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; @@ -8513,29 +8513,16 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; C1A2A581215C43D600000004 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000005 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8548,46 +8535,33 @@ }; name = Release; }; + C1A2A581215C43D600000005 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; C1A2A581215C43D600000006 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; + PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; C1A2A581215C43D600000007 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_file_path_E61EA0A1_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000008 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000009 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8600,7 +8574,7 @@ }; name = Release; }; - C1A2A581215C43D60000000A /* Release */ = { + C1A2A581215C43D600000008 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8613,20 +8587,59 @@ }; name = Release; }; + C1A2A581215C43D600000009 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000000A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_path_E61EA0A1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; C1A2A581215C43D60000000B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; C1A2A581215C43D60000000C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000000D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8639,7 +8652,7 @@ }; name = Release; }; - C1A2A581215C43D60000000D /* Release */ = { + C1A2A581215C43D60000000E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8652,7 +8665,7 @@ }; name = Release; }; - C1A2A581215C43D60000000E /* Release */ = { + C1A2A581215C43D60000000F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8665,7 +8678,7 @@ }; name = Release; }; - C1A2A581215C43D60000000F /* Release */ = { + C1A2A581215C43D600000010 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8678,7 +8691,7 @@ }; name = Release; }; - C1A2A581215C43D600000010 /* Release */ = { + C1A2A581215C43D600000011 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8691,19 +8704,6 @@ }; name = Release; }; - C1A2A581215C43D600000011 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; C1A2A581215C43D600000012 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -8744,6 +8744,32 @@ name = Release; }; C1A2A581215C43D600000015 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000016 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000017 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8756,7 +8782,7 @@ }; name = Release; }; - C1A2A581215C43D600000016 /* Release */ = { + C1A2A581215C43D600000018 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8769,7 +8795,7 @@ }; name = Release; }; - C1A2A581215C43D600000017 /* Release */ = { + C1A2A581215C43D600000019 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8782,7 +8808,7 @@ }; name = Release; }; - C1A2A581215C43D600000018 /* Release */ = { + C1A2A581215C43D60000001A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8795,32 +8821,6 @@ }; name = Release; }; - C1A2A581215C43D600000019 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000001A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; C1A2A581215C43D60000001B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -8835,6 +8835,19 @@ name = Release; }; C1A2A581215C43D60000001C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000001D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8847,7 +8860,7 @@ }; name = Release; }; - C1A2A581215C43D60000001D /* Release */ = { + C1A2A581215C43D60000001E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8860,7 +8873,7 @@ }; name = Release; }; - C1A2A581215C43D60000001E /* Release */ = { + C1A2A581215C43D60000001F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8873,7 +8886,7 @@ }; name = Release; }; - C1A2A581215C43D60000001F /* Release */ = { + C1A2A581215C43D600000020 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8886,7 +8899,7 @@ }; name = Release; }; - C1A2A581215C43D600000020 /* Release */ = { + C1A2A581215C43D600000021 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8899,19 +8912,6 @@ }; name = Release; }; - C1A2A581215C43D600000021 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; C1A2A581215C43D600000022 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -9005,6 +9005,32 @@ name = Release; }; C1A2A581215C43D600000029 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9017,7 +9043,7 @@ }; name = Release; }; - C1A2A581215C43D60000002A /* Release */ = { + C1A2A581215C43D60000002C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9030,20 +9056,7 @@ }; name = Release; }; - C1A2A581215C43D60000002B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000002C /* Release */ = { + C1A2A581215C43D60000002D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9056,27 +9069,14 @@ }; name = Release; }; - C1A2A581215C43D60000002D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; C1A2A581215C43D60000002E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; + OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9192,10 +9192,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9204,12 +9204,11 @@ C1A2A581215C43D600000038 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9231,11 +9230,12 @@ C1A2A581215C43D60000003A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9246,10 +9246,10 @@ buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; + PRODUCT_NAME = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9272,30 +9272,18 @@ C1A2A581215C43D60000003D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; C1A2A581215C43D60000003E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000003F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -9309,14 +9297,27 @@ }; name = Release; }; + C1A2A581215C43D60000003F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; C1A2A581215C43D600000040 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; + PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9325,12 +9326,11 @@ C1A2A581215C43D600000041 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9431,10 +9431,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9444,10 +9444,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9457,10 +9457,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; + PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9496,10 +9496,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -9509,10 +9509,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; + PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -10006,7 +10006,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; @@ -10093,7 +10093,7 @@ GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "--version"; OTHER_LDFLAGS = "--version"; @@ -10121,24 +10121,24 @@ 84EFF5080908381B00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000005 /* Debug */, - C1A2A581215C43D600000005 /* Release */, + C1A2A5811882E1BB00000004 /* Debug */, + C1A2A581215C43D600000004 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5080D167B7100000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001E /* Debug */, - C1A2A581215C43D60000001E /* Release */, + C1A2A5811882E1BB0000001F /* Debug */, + C1A2A581215C43D60000001F /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5080DDBE57E00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000021 /* Debug */, - C1A2A581215C43D600000021 /* Release */, + C1A2A5811882E1BB0000001C /* Debug */, + C1A2A581215C43D60000001C /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10153,8 +10153,8 @@ 84EFF5080F04FD2900000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002A /* Debug */, - C1A2A581215C43D60000002A /* Release */, + C1A2A5811882E1BB0000002C /* Debug */, + C1A2A581215C43D60000002C /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10225,24 +10225,24 @@ 84EFF5081D89926500000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000B /* Debug */, - C1A2A581215C43D60000000B /* Release */, + C1A2A5811882E1BB00000003 /* Debug */, + C1A2A581215C43D600000003 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5081DAB3B6400000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000E /* Debug */, - C1A2A581215C43D60000000E /* Release */, + C1A2A5811882E1BB0000000F /* Debug */, + C1A2A581215C43D60000000F /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5081FB54A7400000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000F /* Debug */, - C1A2A581215C43D60000000F /* Release */, + C1A2A5811882E1BB00000010 /* Debug */, + C1A2A581215C43D600000010 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10265,8 +10265,8 @@ 84EFF5082CF4B73A00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000019 /* Debug */, - C1A2A581215C43D600000019 /* Release */, + C1A2A5811882E1BB00000015 /* Debug */, + C1A2A581215C43D600000015 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10299,8 +10299,8 @@ 84EFF50837CF1CB300000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000003 /* Debug */, - C1A2A581215C43D600000003 /* Release */, + C1A2A5811882E1BB00000005 /* Debug */, + C1A2A581215C43D600000005 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10315,8 +10315,8 @@ 84EFF5083BDB1A3300000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000010 /* Debug */, - C1A2A581215C43D600000010 /* Release */, + C1A2A5811882E1BB00000011 /* Debug */, + C1A2A581215C43D600000011 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10355,8 +10355,8 @@ 84EFF50845659DC900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000004A /* Debug */, - C1A2A581215C43D60000004A /* Release */, + C1A2A5811882E1BB0000004B /* Debug */, + C1A2A581215C43D60000004B /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10387,8 +10387,8 @@ 84EFF5084BCDEF5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000004B /* Debug */, - C1A2A581215C43D60000004B /* Release */, + C1A2A5811882E1BB00000049 /* Debug */, + C1A2A581215C43D600000049 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10403,8 +10403,8 @@ 84EFF5084D89B18800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000016 /* Debug */, - C1A2A581215C43D600000016 /* Release */, + C1A2A5811882E1BB00000018 /* Debug */, + C1A2A581215C43D600000018 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10419,8 +10419,8 @@ 84EFF5084E652AAB00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000011 /* Debug */, - C1A2A581215C43D600000011 /* Release */, + C1A2A5811882E1BB0000000C /* Debug */, + C1A2A581215C43D60000000C /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10435,8 +10435,8 @@ 84EFF508509C6EAD00000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000C /* Debug */, - C1A2A581215C43D60000000C /* Release */, + C1A2A5811882E1BB0000000D /* Debug */, + C1A2A581215C43D60000000D /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10459,8 +10459,8 @@ 84EFF5085C39F12800000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000040 /* Debug */, - C1A2A581215C43D600000040 /* Release */, + C1A2A5811882E1BB00000041 /* Debug */, + C1A2A581215C43D600000041 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10475,16 +10475,16 @@ 84EFF5085E3AF8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000018 /* Debug */, - C1A2A581215C43D600000018 /* Release */, + C1A2A5811882E1BB0000001A /* Debug */, + C1A2A581215C43D60000001A /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003B /* Debug */, - C1A2A581215C43D60000003B /* Release */, + C1A2A5811882E1BB0000003A /* Debug */, + C1A2A581215C43D60000003A /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10517,16 +10517,16 @@ 84EFF508626F7F6F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000008 /* Debug */, - C1A2A581215C43D600000008 /* Release */, + C1A2A5811882E1BB0000000B /* Debug */, + C1A2A581215C43D60000000B /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5086673135900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000020 /* Debug */, - C1A2A581215C43D600000020 /* Release */, + C1A2A5811882E1BB00000021 /* Debug */, + C1A2A581215C43D600000021 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10541,8 +10541,8 @@ 84EFF50867D1B86E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000015 /* Debug */, - C1A2A581215C43D600000015 /* Release */, + C1A2A5811882E1BB00000017 /* Debug */, + C1A2A581215C43D600000017 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10565,8 +10565,8 @@ 84EFF5086FD1C2A400000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003F /* Debug */, - C1A2A581215C43D60000003F /* Release */, + C1A2A5811882E1BB0000003E /* Debug */, + C1A2A581215C43D60000003E /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10581,24 +10581,24 @@ 84EFF508734E4FE900000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001D /* Debug */, - C1A2A581215C43D60000001D /* Release */, + C1A2A5811882E1BB0000001E /* Debug */, + C1A2A581215C43D60000001E /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508735E8FC000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002B /* Debug */, - C1A2A581215C43D60000002B /* Release */, + C1A2A5811882E1BB0000002E /* Debug */, + C1A2A581215C43D60000002E /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000029 /* Debug */, - C1A2A581215C43D600000029 /* Release */, + C1A2A5811882E1BB0000002B /* Debug */, + C1A2A581215C43D60000002B /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10613,8 +10613,8 @@ 84EFF5087AB0E97E00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003D /* Debug */, - C1A2A581215C43D60000003D /* Release */, + C1A2A5811882E1BB0000003F /* Debug */, + C1A2A581215C43D60000003F /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10645,8 +10645,8 @@ 84EFF50883C6DEA900000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000A /* Debug */, - C1A2A581215C43D60000000A /* Release */, + C1A2A5811882E1BB00000008 /* Debug */, + C1A2A581215C43D600000008 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10661,24 +10661,24 @@ 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002E /* Debug */, - C1A2A581215C43D60000002E /* Release */, + C1A2A5811882E1BB0000002A /* Debug */, + C1A2A581215C43D60000002A /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5088CF1146C00000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000017 /* Debug */, - C1A2A581215C43D600000017 /* Release */, + C1A2A5811882E1BB00000019 /* Debug */, + C1A2A581215C43D600000019 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5088E413F3200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001F /* Debug */, - C1A2A581215C43D60000001F /* Release */, + C1A2A5811882E1BB00000020 /* Debug */, + C1A2A581215C43D600000020 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10693,8 +10693,8 @@ 84EFF5089778129500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003A /* Debug */, - C1A2A581215C43D60000003A /* Release */, + C1A2A5811882E1BB00000037 /* Debug */, + C1A2A581215C43D600000037 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10717,8 +10717,8 @@ 84EFF5089DA663AF00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000037 /* Debug */, - C1A2A581215C43D600000037 /* Release */, + C1A2A5811882E1BB00000038 /* Debug */, + C1A2A581215C43D600000038 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10733,16 +10733,16 @@ 84EFF5089F87702200000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003E /* Debug */, - C1A2A581215C43D60000003E /* Release */, + C1A2A5811882E1BB00000040 /* Debug */, + C1A2A581215C43D600000040 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508A3588D7D00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000009 /* Debug */, - C1A2A581215C43D600000009 /* Release */, + C1A2A5811882E1BB00000007 /* Debug */, + C1A2A581215C43D600000007 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10765,32 +10765,32 @@ 84EFF508A9596AF100000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001C /* Debug */, - C1A2A581215C43D60000001C /* Release */, + C1A2A5811882E1BB0000001D /* Debug */, + C1A2A581215C43D60000001D /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508AB21E79200000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000004 /* Debug */, - C1A2A581215C43D600000004 /* Release */, + C1A2A5811882E1BB00000006 /* Debug */, + C1A2A581215C43D600000006 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000049 /* Debug */, - C1A2A581215C43D600000049 /* Release */, + C1A2A5811882E1BB0000004A /* Debug */, + C1A2A581215C43D60000004A /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508ADC0634800000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001A /* Debug */, - C1A2A581215C43D60000001A /* Release */, + C1A2A5811882E1BB00000016 /* Debug */, + C1A2A581215C43D600000016 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10885,8 +10885,8 @@ 84EFF508D42124C800000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002C /* Debug */, - C1A2A581215C43D60000002C /* Release */, + C1A2A5811882E1BB0000002D /* Debug */, + C1A2A581215C43D60000002D /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10901,16 +10901,16 @@ 84EFF508D5E19DD800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000006 /* Debug */, - C1A2A581215C43D600000006 /* Release */, + C1A2A5811882E1BB00000009 /* Debug */, + C1A2A581215C43D600000009 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508D7525C8000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000041 /* Debug */, - C1A2A581215C43D600000041 /* Release */, + C1A2A5811882E1BB0000003D /* Debug */, + C1A2A581215C43D60000003D /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10925,8 +10925,8 @@ 84EFF508DB4002F000000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000004E /* Debug */, - C1A2A581215C43D60000004E /* Release */, + C1A2A5811882E1BB0000004F /* Debug */, + C1A2A581215C43D60000004F /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10941,8 +10941,8 @@ 84EFF508DB9B2BF000000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000007 /* Debug */, - C1A2A581215C43D600000007 /* Release */, + C1A2A5811882E1BB0000000A /* Debug */, + C1A2A581215C43D60000000A /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10981,8 +10981,8 @@ 84EFF508DF63089600000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000D /* Debug */, - C1A2A581215C43D60000000D /* Release */, + C1A2A5811882E1BB0000000E /* Debug */, + C1A2A581215C43D60000000E /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -11021,24 +11021,24 @@ 84EFF508EE0A722C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000038 /* Debug */, - C1A2A581215C43D600000038 /* Release */, + C1A2A5811882E1BB0000003B /* Debug */, + C1A2A581215C43D60000003B /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002D /* Debug */, - C1A2A581215C43D60000002D /* Release */, + C1A2A5811882E1BB00000029 /* Debug */, + C1A2A581215C43D600000029 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000004F /* Debug */, - C1A2A581215C43D60000004F /* Release */, + C1A2A5811882E1BB0000004E /* Debug */, + C1A2A581215C43D60000004E /* Release */, ); defaultConfigurationIsVisible = 0; }; diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate index c9fe55e5e..3363bfca8 100644 Binary files a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate and b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme index d7f713a59..1a707e650 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme @@ -1,29 +1,29 @@ - - + + - - + + - + - + - + - + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme index 8d3374b12..0152d08aa 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme @@ -1,1108 +1,1108 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - + + - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - + + - - + + - - + + - - + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme index c79e4e91f..58751938b 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme @@ -2,26 +2,26 @@ - - + + - + - + - + - + - + diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index c0c11cc93..000000000 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,37 +0,0 @@ - - - - - SchemeUserState - - OlaFaceUnityFramework.xcscheme_^#shared#^_ - - isShown - - orderHint - 5 - - _bazel_clean_.xcscheme_^#shared#^_ - - orderHint - 6 - - _idx_Scheme.xcscheme_^#shared#^_ - - isShown - - orderHint - 3 - - mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme_^#shared#^_ - - isShown - - orderHint - 4 - - - SuppressBuildableAutocreation - - - diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h index 0e7e3b848..da055d662 100644 --- a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h +++ b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h @@ -14,10 +14,17 @@ typedef struct { @interface OlaFaceUnity : NSObject +@property (nonatomic) CGFloat whiten; +@property (nonatomic) CGFloat smooth; + + (instancetype)sharedInstance; -- (void)currentContext; +- (EAGLContext *)currentContext; + +- (void)resume; + +- (void)suspend; // 算法输入 - (void)processVideoFrame:(CVPixelBufferRef)pixelbuffer diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm index 5bf056a25..f7d5a6300 100644 --- a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm +++ b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm @@ -38,7 +38,8 @@ } } -+ (instancetype)sharedInstance { ++ (instancetype)sharedInstance +{ static OlaFaceUnity *sharedInstance = nil; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ @@ -49,40 +50,38 @@ - (FaceTextureInfo)render:(FaceTextureInfo)inputTexture { - TextureInfo rs; - rs.ioSurfaceId = inputTexture.ioSurfaceId; - if (_face_module) { - TextureInfo input; - input.width = inputTexture.width; - input.height = inputTexture.height; - input.ioSurfaceId = inputTexture.ioSurfaceId; - input.textureId = inputTexture.textureId; - input.frameTime = inputTexture.frameTime; + @autoreleasepool { + TextureInfo rs; + rs.ioSurfaceId = inputTexture.ioSurfaceId; + if (_face_module) { + TextureInfo input; + input.width = inputTexture.width; + input.height = inputTexture.height; + input.ioSurfaceId = inputTexture.ioSurfaceId; + input.textureId = inputTexture.textureId; + input.frameTime = inputTexture.frameTime; - rs = _face_module->renderTexture(input); - } - FaceTextureInfo result; - result.width = rs.width; - result.height = rs.height; - result.ioSurfaceId = rs.ioSurfaceId; - result.textureId = rs.textureId; - result.frameTime = rs.frameTime; - - return result; -} - -// - (EAGLContext *)currentContext -// { -// if (_face_module) { -// return _face_module->currentContext()->currentContext(); -// } -// } - -- (void)currentContext { - if (_face_module) { - _face_module->currentContext()->currentContext(); + rs = _face_module->renderTexture(input); + } + FaceTextureInfo result; + result.width = rs.width; + result.height = rs.height; + result.ioSurfaceId = rs.ioSurfaceId; + result.textureId = rs.textureId; + result.frameTime = rs.frameTime; + return result; } } + + + + + - (EAGLContext *)currentContext + { + if (_face_module) { + return _face_module->currentContext()->currentContext(); + } + } - (void)processVideoFrame:(CVPixelBufferRef)pixelbuffer timeStamp:(int64_t)timeStamp; @@ -94,4 +93,48 @@ _face_module->processVideoFrame(pixelbuffer, timeStamp); } +- (CGFloat)whiten +{ + return _face_module->getWhitening(); +} + +- (CGFloat)smooth +{ + return _face_module->getSmoothing(); +} + +- (void)setWhiten:(CGFloat)whiten +{ + _face_module->setWhitening(whiten); +} + +- (void)setSmooth:(CGFloat)smooth +{ + _face_module->setSmoothing(smooth); +} + +- (void)resume +{ + if (!_face_module) { + [self initModule]; + } + _face_module->resume(); +} + +- (void)suspend +{ + if (!_face_module) { + [self initModule]; + } + _face_module->suspend(); +} + +- (void)dispose +{ + _face_module->stopModule(); + _face_module->suspend(); + delete _face_module; + _face_module = nullptr; +} + @end