@class NSObject; @protocol OS_dispatch_group, MTLCommandBuffer, MTLDevice, MTLTexture, MTLComputePipelineState, MTLBuffer; @interface CIBilateralSolverGPU : NSObject { id _commandBuffer; id _metalDevice; id _computePipelines[9]; NSObject *_computePipelinesGroup; struct { struct { unsigned long long width; unsigned long long height; unsigned long long depth; } dispatchThreadgroups; struct { unsigned long long width; unsigned long long height; unsigned long long depth; } threadsPerThreadgroup; } _threadGroupInfo; struct { float lambda; unsigned int N; unsigned short dims; float sigma_s; float sigma_r_luma; } _params; struct { void /* unknown type, empty encoding */ reference; void /* unknown type, empty encoding */ confidence; void /* unknown type, empty encoding */ disparity; void /* unknown type, empty encoding */ output; } _offsets; int _width; int _height; unsigned long long _maxVertices; id _gridHashBuffer; id _gridBlurBuffer; id _gridCoordIndicesBuffer; id _gridCoordTableBuffer; id _gridHashMatrix; id _gridInterpIndicesBuffer; id _gridInterpTableBuffer; id _gridInterpPadBuffer; id _A_buf; id _b_buf; id _s_buf; id _q_buf; id _Dn_buf[2]; id _x_buf[2]; id _r_buf[2]; id _d_buf[2]; int _idxDnBufIn; int _idxSwapBufIn; } @property (nonatomic) BOOL useTrilinearInterpolation; - (void).cxx_destruct; - (int)_doBistochastizeWithCommandBuffer:(id)a0 t_tex:(id)a1 c_tex:(id)a2 lambda:(float)a3 nIterations:(int)a4; - (int)_doPCGWithCommandBuffer:(id)a0 nIterations:(int)a1; - (int)_doSliceTrilinearWithCommandBuffer:(id)a0 ref_tex:(id)a1 o_tex:(id)a2; - (int)_doSliceWithCommandBuffer:(id)a0 o_tex:(id)a1; - (void)_prepareResources:(id)a0; - (void)_setupBuffer; - (void)_setupMetal; - (void)_setupPipelineCache; - (void)_setupPipelinesAsync:(id /* block */)a0; - (int)doSolveWithBilateralGridhash:(id)a0 reference:(id)a1 disparity:(id)a2 confidence:(id)a3 output:(id)a4 lambda:(float)a5 maxIterations:(int)a6 offsets:(struct { } *)a7; - (id)initWithWidth:(int)a0 height:(int)a1 maxVertices:(unsigned long long)a2 commandBuffer:(id)a3; @end