コード例 #1
0
 new KeyedSharedPool <DepthImage, (int width, int height)>(key => new DepthImage(key.width, key.height));
コード例 #2
0
 new KeyedSharedPool <EncodedImage, (int width, int height, PixelFormat pixelFormat)>(key => new EncodedImage(key.width, key.height, key.pixelFormat));
コード例 #3
0
 new EncodedDepthImage(key.width, key.height, key.depthValueSemantics, key.depthValueToMetersScaleFactor));
コード例 #4
0
 new KeyedSharedPool <Image, (int width, int height, PixelFormat format)>(key => new Image(key.width, key.height, key.format));