blob: 30386da183dcf5307fb2e28136aac08a033ac3b5 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
8#ifndef SkOSWindow_Unix_DEFINED
9#define SkOSWindow_Unix_DEFINED
10
Scroggo9df214e2011-04-15 14:48:08 +000011#include <GL/glx.h>
tomhudson@google.com178b8e02012-03-05 18:29:23 +000012#include <X11/Xlib.h>
reed@android.com8a1c16f2008-12-17 15:59:43 +000013
tomhudson@google.com178b8e02012-03-05 18:29:23 +000014#include "SkWindow.h"
15
scroggob7e9aee2011-03-15 15:15:15 +000016class SkEvent;
17
reed@android.com8a1c16f2008-12-17 15:59:43 +000018struct SkUnixWindow {
19 Display* fDisplay;
20 Window fWin;
21 size_t fOSWin;
scroggob7e9aee2011-03-15 15:15:15 +000022 GC fGc;
Scroggo9df214e2011-04-15 14:48:08 +000023 GLXContext fGLContext;
reed@android.com8a1c16f2008-12-17 15:59:43 +000024};
25
26class SkOSWindow : public SkWindow {
27public:
scroggob7e9aee2011-03-15 15:15:15 +000028 SkOSWindow(void*);
29 ~SkOSWindow();
reed@android.com8a1c16f2008-12-17 15:59:43 +000030
scroggob7e9aee2011-03-15 15:15:15 +000031 void* getHWND() const { return (void*)fUnixWindow.fWin; }
32 void* getDisplay() const { return (void*)fUnixWindow.fDisplay; }
33 void* getUnixWindow() const { return (void*)&fUnixWindow; }
Scroggo9df214e2011-04-15 14:48:08 +000034 void loop();
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000035
36 enum SkBackEndTypes {
37 kNone_BackEndType,
38 kNativeGL_BackEndType,
hendrikw6f0fdac2015-09-23 11:35:55 -070039#if SK_ANGLE
40 kANGLE_BackEndType,
41#endif // SK_ANGLE
hendrikwb1ac52f2015-10-01 18:29:34 -070042#if SK_COMMAND_BUFFER
kkinnunenf655e932016-03-03 07:39:48 -080043 kCommandBuffer_BackEndType,
hendrikwb1ac52f2015-10-01 18:29:34 -070044#endif // SK_COMMAND_BUFFER
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000045 };
46
bsalomon@google.com64cc8102013-03-05 20:06:05 +000047 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
mtklein18300a32016-03-16 13:53:35 -070048 void release();
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000049 void present();
reed@android.com8a1c16f2008-12-17 15:59:43 +000050
bsalomon@google.com11959252012-04-06 20:13:38 +000051 int getMSAASampleCount() const { return fMSAASampleCount; }
52
scroggob7e9aee2011-03-15 15:15:15 +000053 //static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
reed@android.com8a1c16f2008-12-17 15:59:43 +000054
bsalomon85ab5512015-06-16 12:47:25 -070055 bool makeFullscreen();
56 void setVsync(bool);
57 void closeWindow();
joshualittda7b8432015-05-27 09:19:03 -070058
reed@android.com8a1c16f2008-12-17 15:59:43 +000059protected:
tomhudson@google.com178b8e02012-03-05 18:29:23 +000060 // Overridden from from SkWindow:
mtklein36352bf2015-03-25 18:17:31 -070061 void onSetTitle(const char title[]) override;
reed@android.com8a1c16f2008-12-17 15:59:43 +000062
63private:
reed@google.comacb3d882013-06-17 13:42:43 +000064 enum NextXEventResult {
65 kContinue_NextXEventResult,
66 kQuitRequest_NextXEventResult,
67 kPaintRequest_NextXEventResult
68 };
69
70 NextXEventResult nextXEvent();
tomhudson@google.com178b8e02012-03-05 18:29:23 +000071 void doPaint();
72 void mapWindowAndWait();
73
joshualitt7fe8ee42015-06-01 10:03:54 -070074 // Forcefully closes the window. If a graceful shutdown is desired then call the public
75 // closeWindow method
76 void internalCloseWindow();
bsalomon@google.com64cc8102013-03-05 20:06:05 +000077 void initWindow(int newMSAASampleCount, AttachmentInfo* info);
bsalomon@google.com11959252012-04-06 20:13:38 +000078
tomhudson@google.com178b8e02012-03-05 18:29:23 +000079 SkUnixWindow fUnixWindow;
Scroggo9df214e2011-04-15 14:48:08 +000080
81 // Needed for GL
82 XVisualInfo* fVi;
bsalomon@google.com11959252012-04-06 20:13:38 +000083 // we recreate the underlying xwindow if this changes
84 int fMSAASampleCount;
reed@android.com8a1c16f2008-12-17 15:59:43 +000085
reed@android.com8a1c16f2008-12-17 15:59:43 +000086 typedef SkWindow INHERITED;
87};
88
89#endif