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