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

Side by Side Diff: include/views/SkOSWindow_Unix.h

Issue 1151333004: CL to add setFullscreen and setVsync to SkWindow (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tweaks Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « gyp/visualbench.gyp ('k') | include/views/SkWindow.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkOSWindow_Unix_DEFINED 8 #ifndef SkOSWindow_Unix_DEFINED
9 #define SkOSWindow_Unix_DEFINED 9 #define SkOSWindow_Unix_DEFINED
10 10
(...skipping 28 matching lines...) Expand all
39 }; 39 };
40 40
41 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*) ; 41 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*) ;
42 void detach(); 42 void detach();
43 void present(); 43 void present();
44 44
45 int getMSAASampleCount() const { return fMSAASampleCount; } 45 int getMSAASampleCount() const { return fMSAASampleCount; }
46 46
47 //static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay); 47 //static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
48 48
49 void setFullscreen(bool) override;
50 void setVsync(bool) override;
51
49 protected: 52 protected:
50 // Overridden from from SkWindow: 53 // Overridden from from SkWindow:
51 void onSetTitle(const char title[]) override; 54 void onSetTitle(const char title[]) override;
52 55
53 private: 56 private:
54 enum NextXEventResult { 57 enum NextXEventResult {
55 kContinue_NextXEventResult, 58 kContinue_NextXEventResult,
56 kQuitRequest_NextXEventResult, 59 kQuitRequest_NextXEventResult,
57 kPaintRequest_NextXEventResult 60 kPaintRequest_NextXEventResult
58 }; 61 };
59 62
60 NextXEventResult nextXEvent(); 63 NextXEventResult nextXEvent();
61 void doPaint(); 64 void doPaint();
62 void mapWindowAndWait(); 65 void mapWindowAndWait();
63 66
64 void closeWindow(); 67 void closeWindow();
65 void initWindow(int newMSAASampleCount, AttachmentInfo* info); 68 void initWindow(int newMSAASampleCount, AttachmentInfo* info);
66 69
67 SkUnixWindow fUnixWindow; 70 SkUnixWindow fUnixWindow;
68 71
69 // Needed for GL 72 // Needed for GL
70 XVisualInfo* fVi; 73 XVisualInfo* fVi;
71 // we recreate the underlying xwindow if this changes 74 // we recreate the underlying xwindow if this changes
72 int fMSAASampleCount; 75 int fMSAASampleCount;
73 76
74 typedef SkWindow INHERITED; 77 typedef SkWindow INHERITED;
75 }; 78 };
76 79
77 #endif 80 #endif
OLDNEW
« no previous file with comments | « gyp/visualbench.gyp ('k') | include/views/SkWindow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698