Class JAWTDrawingSurfaceInfo

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class JAWTDrawingSurfaceInfo
    extends Struct

    Member documentation

    • platformInfo – Pointer to the platform-specific information. This can be safely cast to a JAWT_Win32DrawingSurfaceInfo on Windows or a JAWT_X11DrawingSurfaceInfo on Solaris. On Mac OS X this is a pointer to a NSObject that conforms to the JAWT_SurfaceLayers protocol.
    • ds – Cached pointer to the underlying drawing surface.
    • bounds – Bounding rectangle of the drawing surface.
    • clipSize – Number of rectangles in the clip.
    • clip – Clip rectangle array.

    Layout

    struct JAWT_DrawingSurfaceInfo {
        void * platformInfo;
        JAWT_DrawingSurface * ds;
        JAWT_Rectangle bounds;
        jint clipSize;
        JAWT_Rectangle * clip;
    }