Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Unified Diff: src/views/ios/SkOSWindow_iOS.mm

Issue 12437010: Make SkOSWindow return the sample count and stencil bit count for its GL context. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Make SkOSWindow return the sample count and stencil bit count for its GL context. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/views/ios/SkOSWindow_iOS.mm
===================================================================
--- src/views/ios/SkOSWindow_iOS.mm (revision 7987)
+++ src/views/ios/SkOSWindow_iOS.mm (working copy)
@@ -51,7 +51,9 @@
}
bool SkOSWindow::attach(SkBackEndTypes /* attachType */,
- int /* msaaSampleCount */) {
+ int /* msaaSampleCount */,
+ AttachmentInfo* info) {
+ [(SkUIView*)fHWND getAttachmentInfo:info];
bool success = true;
return success;
}

Powered by Google App Engine
This is Rietveld 408576698