src/macosx/native/sun/awt/ImageSurfaceData.h

Print this page

        

@@ -39,32 +39,30 @@
 
 // if there is no image created for isdo.imgRef, it creates and image using the isdo.dataProvider
 // If there is an image present, this is a no-op
 void makeSureImageIsCreated(ImageSDOps* isdo);
 
-struct _ContextInfo
+typedef struct _ContextInfo
 {
     BOOL                useWindowContextReference;
     BOOL                canUseJavaPixelsAsContext;
     size_t                bitsPerComponent;
     size_t                bytesPerPixel;
     size_t                bytesPerRow;
     CGImageAlphaInfo    alphaInfo;
     CGColorSpaceRef        colorSpace;
-}
-typedef ContextInfo;
+} ContextInfo;
 
-struct _ImageInfo
+typedef struct _ImageInfo
 {
     size_t                bitsPerComponent;
     size_t                bitsPerPixel;
     size_t                bytesPerPixel;
     size_t                bytesPerRow;
     CGImageAlphaInfo    alphaInfo;
     CGColorSpaceRef        colorSpace;
-}
-typedef ImageInfo;
+} ImageInfo;
 
 struct _ImageSDOps
 {
     QuartzSDOps                qsdo; // must be the first entry!