SKSwizzle.SwapRedBlue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SwapRedBlue(Span<Byte>) |
Swizzles the byte order of 32-bit pixels, swapping R and B. (RGBA <-> BGRA) |
SwapRedBlue(IntPtr, Int32) |
Swizzles the byte order of 32-bit pixels, swapping R and B. (RGBA <-> BGRA) |
SwapRedBlue(ReadOnlySpan<Byte>, Int32) |
Swizzles the byte order of 32-bit pixels, swapping R and B. (RGBA <-> BGRA) |
SwapRedBlue(IntPtr, IntPtr, Int32) |
Swizzles the byte order of 32-bit pixels, swapping R and B. (RGBA <-> BGRA) |
SwapRedBlue(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Int32) |
Swizzles the byte order of 32-bit pixels, swapping R and B. (RGBA <-> BGRA) |
SwapRedBlue(Span<Byte>)
SwapRedBlue(IntPtr, Int32)
SwapRedBlue(ReadOnlySpan<Byte>, Int32)
Swizzles the byte order of 32-bit pixels, swapping R and B. (RGBA <-> BGRA)
public static void SwapRedBlue (ReadOnlySpan<byte> pixels, int count);
Parameters
- pixels
- ReadOnlySpan<Byte>
The pixel buffer to swizzle.
- count
- Int32
The size of the pixel buffers.
Applies to
SwapRedBlue(IntPtr, IntPtr, Int32)
SwapRedBlue(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Int32)
Swizzles the byte order of 32-bit pixels, swapping R and B. (RGBA <-> BGRA)
public static void SwapRedBlue (ReadOnlySpan<byte> dest, ReadOnlySpan<byte> src, int count);
Parameters
- dest
- ReadOnlySpan<Byte>
The destination pixel buffer.
- src
- ReadOnlySpan<Byte>
The source pixel buffer.
- count
- Int32
The size of the pixel buffers.