summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/spritekit/SKMutableTexture.inc
blob: e2702173c0f8d2cbd38162a16cfa4370c6a35eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ Parsed from SpriteKit.framework SKMutableTexture.h }


{$ifdef TYPES}
type
  SKMutableTexturePtr = ^SKMutableTexture;
{$endif}

{$ifdef CLASSES}

type
  SKMutableTexture = objcclass external (SKTexture)
  public
    function initWithSize (size_: CGSize): instancetype; message 'initWithSize:';
    class function mutableTextureWithSize (size_: CGSize): instancetype; message 'mutableTextureWithSize:';
    function initWithSize_pixelFormat (size_: CGSize; format: cint): instancetype; message 'initWithSize:pixelFormat:';
    procedure modifyPixelDataWithBlock (block: OpaqueCBlock); message 'modifyPixelDataWithBlock:';
  end;
{$endif}