Пример #1
0
 public static extern int UpperBlitScaled(Surface *src, Rect *srcrect, Surface *dst, Rect *dstrect);
Пример #2
0
 public static extern IntRect SurfaceGetDirtyBounds([NativeTypeName("ULSurface")] Surface *surface);
Пример #3
0
 public static extern void *SurfaceGetUserData([NativeTypeName("ULSurface")] Surface *surface);
Пример #4
0
 public static extern UIntPtr SurfaceGetSize([NativeTypeName("ULSurface")] Surface *surface);
Пример #5
0
 public static extern void SurfaceResize([NativeTypeName("ULSurface")] Surface *surface, [NativeTypeName("unsigned int")] uint width, [NativeTypeName("unsigned int")] uint height);
Пример #6
0
 public static extern Texture CreateTextureFromSurface(Renderer renderer, Surface *surface);
Пример #7
0
 public static extern uint SurfaceGetHeight([NativeTypeName("ULSurface")] Surface *surface);
Пример #8
0
 public static extern void GetClipRect(Surface *surface, Rect *rect);
Пример #9
0
 public static extern int GetColorKey(Surface *surface, uint *key);
Пример #10
0
 public static extern int FillRects(Surface *dst, Rect *rects, int count, uint color);
Пример #11
0
 public static extern void FreeSurface(Surface *surface);
Пример #12
0
 public static extern Surface *ConvertSurfaceFormat(Surface *src, uint pixel_format, uint flags);
Пример #13
0
 public static extern Surface *ConvertSurface(Surface *src, PixelFormat *fmt, uint flags);
Пример #14
0
 public static int BlitSurface(Surface *src, Rect *srcrect, Surface *dst, Rect *dstrect) => UpperBlit(src, srcrect, dst, dstrect);
Пример #15
0
 public static extern int SetSurfaceAlphaMod(Surface *surface, byte alpha);
Пример #16
0
 public static extern int GetSurfaceColorMod(Surface *surface, byte *r, byte *g, byte *b);
Пример #17
0
 public static extern int SetSurfaceBlendMode(Surface *surface, BlendMode blendMode);
Пример #18
0
 public static extern int LockSurface(Surface *surface);
Пример #19
0
 public static extern Renderer CreateSoftwareRenderer(Surface *surface);
Пример #20
0
 public static extern int LowerBlit(Surface *src, Rect *srcrect, Surface *dst, Rect *dstrect);
Пример #21
0
 public static extern uint SurfaceGetRowBytes([NativeTypeName("ULSurface")] Surface *surface);
Пример #22
0
 public static extern int LowerBlitScaled(Surface *surface, Rect *srcrect, Surface *dst, Rect *dstrect);
Пример #23
0
 public static extern void SurfaceUnlockPixels([NativeTypeName("ULSurface")] Surface *surface);
Пример #24
0
 public static bool MUSTLOCK(Surface *s) => (s->Flags & 0x00000002) != 0;
Пример #25
0
 public static extern void SurfaceSetDirtyBounds([NativeTypeName("ULSurface")] Surface *surface, IntRect bounds);
Пример #26
0
 public static extern bool SetClipRect(Surface *surface, Rect *rect);
Пример #27
0
 public static extern void SurfaceClearDirtyBounds([NativeTypeName("ULSurface")] Surface *surface);
Пример #28
0
 public static extern int SetColorKey(Surface *surface, bool flag, uint key);
Пример #29
0
 public static extern Bitmap *BitmapSurfaceGetBitmap([NativeTypeName("ULBitmapSurface")] Surface *surface);
Пример #30
0
 public static extern void UnlockSurface(Surface *surface);