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