1*8975f5c5SAndroid Build Coastguard Worker // 2*8975f5c5SAndroid Build Coastguard Worker // Copyright 2015 The ANGLE Project Authors. All rights reserved. 3*8975f5c5SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 4*8975f5c5SAndroid Build Coastguard Worker // found in the LICENSE file. 5*8975f5c5SAndroid Build Coastguard Worker // 6*8975f5c5SAndroid Build Coastguard Worker 7*8975f5c5SAndroid Build Coastguard Worker // X11Window.h: Definition of the implementation of OSWindow for X11 8*8975f5c5SAndroid Build Coastguard Worker 9*8975f5c5SAndroid Build Coastguard Worker #ifndef UTIL_X11_WINDOW_H 10*8975f5c5SAndroid Build Coastguard Worker #define UTIL_X11_WINDOW_H 11*8975f5c5SAndroid Build Coastguard Worker 12*8975f5c5SAndroid Build Coastguard Worker #include <string> 13*8975f5c5SAndroid Build Coastguard Worker 14*8975f5c5SAndroid Build Coastguard Worker #include "util/OSWindow.h" 15*8975f5c5SAndroid Build Coastguard Worker #include "util/util_export.h" 16*8975f5c5SAndroid Build Coastguard Worker 17*8975f5c5SAndroid Build Coastguard Worker ANGLE_UTIL_EXPORT OSWindow *CreateX11Window(); 18*8975f5c5SAndroid Build Coastguard Worker ANGLE_UTIL_EXPORT OSWindow *CreateX11WindowWithVisualId(int visualId); 19*8975f5c5SAndroid Build Coastguard Worker 20*8975f5c5SAndroid Build Coastguard Worker bool IsX11WindowAvailable(); 21*8975f5c5SAndroid Build Coastguard Worker 22*8975f5c5SAndroid Build Coastguard Worker #endif // UTIL_X11_WINDOW_H 23