Engine.Objects.HWSurfaceInstance.BlitMaskSurface C# (CSharp) Méthode

BlitMaskSurface() private méthode

private BlitMaskSurface ( HWSurfaceInstance surf, int x, int y, ColorInstance mask ) : void
surf HWSurfaceInstance
x int
y int
mask ColorInstance
Résultat void
        public void BlitMaskSurface(HWSurfaceInstance surf, int x, int y, ColorInstance mask)
        {
            if (surf._changed) { surf.Update(); }
            _myBatch.Add(surf._cache, (float)x, (float)y);
            _changed = true;
        }