Apachai.Effects.Core.FastBitmapExtensions.GetRowAddressUnchecked C# (CSharp) Method

GetRowAddressUnchecked() public static method

public static GetRowAddressUnchecked ( this surf, int y ) : PixelData*
surf this
y int
return PixelData*
        public static unsafe PixelData* GetRowAddressUnchecked(this FastBitmap surf, int y)
        {
            PixelData* dstPtr = (PixelData*)surf.DataPtr;

            dstPtr += y * surf.Width;

            return dstPtr;
        }

Same methods

FastBitmapExtensions::GetRowAddressUnchecked ( this surf, PixelData surfDataPtr, int surfWidth, int y ) : PixelData*