Index: include/views/SkOSWindow_NaCl.h |
=================================================================== |
--- include/views/SkOSWindow_NaCl.h (revision 7991) |
+++ include/views/SkOSWindow_NaCl.h (working copy) |
@@ -24,7 +24,14 @@ |
kNativeGL_BackEndType, |
}; |
- bool attach(SkBackEndTypes /* attachType */, int /* msaaSampleCount */) { |
+ struct AttachmentInfo { |
+ int fSampleCount; |
+ int fStencilBits; |
+ }; |
+ |
+ bool attach(SkBackEndTypes /* attachType */, int /* msaaSampleCount */, AttachmentInfo* info) { |
+ info->fSampleCount = 0; |
+ info->fStencilBits = 0; |
return true; |
} |
void detach() {} |