NScumm.MonoGame.XnaGraphicsManager.CopyRectToScreen C# (CSharp) Метод

CopyRectToScreen() публичный Метод

public CopyRectToScreen ( byte buffer, int sourceStride, int x, int y, int width, int height ) : void
buffer byte
sourceStride int
x int
y int
width int
height int
Результат void
        public void CopyRectToScreen(byte[] buffer, int sourceStride, int x, int y, int width, int height)
        {
            _colorGraphicsManager.CopyRectToScreen(buffer, sourceStride, x, y, width, height);
        }

Same methods

XnaGraphicsManager::CopyRectToScreen ( byte buffer, int startOffset, int sourceStride, int x, int y, int width, int height ) : void
XnaGraphicsManager::CopyRectToScreen ( byte buffer, int sourceStride, int x, int y, int dstX, int dstY, int width, int height ) : void