mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
Moved from IntPtr to byte[] in more places
This commit is contained in:
@@ -66,7 +66,7 @@ namespace Microsoft.Iris
|
||||
int imageHeight,
|
||||
int stride,
|
||||
RawImageFormat format,
|
||||
IntPtr data)
|
||||
byte[] data)
|
||||
: this(uniqueID, imageWidth, imageHeight, stride, format, data, 0, 0, false)
|
||||
{
|
||||
}
|
||||
@@ -77,7 +77,7 @@ namespace Microsoft.Iris
|
||||
int imageHeight,
|
||||
int stride,
|
||||
RawImageFormat format,
|
||||
IntPtr data,
|
||||
byte[] data,
|
||||
int maximumWidth,
|
||||
int maximumHeight,
|
||||
bool flippable)
|
||||
@@ -91,7 +91,7 @@ namespace Microsoft.Iris
|
||||
int imageHeight,
|
||||
int stride,
|
||||
RawImageFormat format,
|
||||
IntPtr data,
|
||||
byte[] data,
|
||||
int maximumWidth,
|
||||
int maximumHeight,
|
||||
bool flippable,
|
||||
|
||||
Reference in New Issue
Block a user