Index: include/views/SkOSWindow_Unix.h |
=================================================================== |
--- include/views/SkOSWindow_Unix.h (revision 7991) |
+++ include/views/SkOSWindow_Unix.h (working copy) |
@@ -39,7 +39,12 @@ |
kNativeGL_BackEndType, |
}; |
- bool attach(SkBackEndTypes attachType, int msaaSampleCount); |
+ struct AttachmentInfo { |
+ int fSampleCount; |
+ int fStencilBits; |
+ }; |
+ |
+ bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*); |
void detach(); |
void present(); |
@@ -61,7 +66,7 @@ |
void mapWindowAndWait(); |
void closeWindow(); |
- void initWindow(int newMSAASampleCount); |
+ void initWindow(int newMSAASampleCount, AttachmentInfo* info); |
SkUnixWindow fUnixWindow; |