Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00031
00032 #pragma once
00033
00034 #include "api_gl.h"
00035 #include "../Core/System/sharedptr.h"
00036 #include "../Display/Window/display_window_description.h"
00037
00038 class CL_OpenGLWindowDescription_Impl;
00039
00052 class CL_API_GL CL_OpenGLWindowDescription : public CL_DisplayWindowDescription
00053 {
00056 public:
00058 CL_OpenGLWindowDescription();
00059
00063 CL_OpenGLWindowDescription(const CL_DisplayWindowDescription &desc);
00064 CL_OpenGLWindowDescription &operator=(CL_DisplayWindowDescription &desc);
00065
00066 virtual ~CL_OpenGLWindowDescription();
00067
00071 public:
00073
00074 bool get_doublebuffer() const;
00075
00077
00078 bool get_stereo() const;
00079
00081
00083 int get_buffer_size() const;
00084
00086 int get_red_size() const;
00087
00089 int get_green_size() const;
00090
00092 int get_blue_size() const;
00093
00095 int get_alpha_size() const;
00096
00098 int get_multisampling() const;
00099
00101 int get_version_major() const;
00102
00104 int get_version_minor() const;
00105
00107 bool get_allow_lower_versions() const;
00108
00110 bool get_debug() const;
00111
00113 bool get_forward_compatible() const;
00114
00116 bool get_core_profile() const;
00117
00119 bool get_compatibility_profile() const;
00120
00122 int get_layer_plane() const;
00123
00127 public:
00129
00130 void set_doublebuffer(bool value);
00131
00133
00134 void set_stereo(bool value);
00135
00137
00139 void set_buffer_size(int value);
00140
00142
00144 void set_red_size(int value);
00145
00147
00149 void set_green_size(int value);
00150
00152
00154 void set_blue_size(int value);
00155
00157
00159 void set_alpha_size(int value);
00160
00162 void set_multisampling(int value);
00163
00171 void set_version(int major, int minor, bool allow_lower_versions);
00172
00180 void set_debug(bool enable);
00181
00190 void set_forward_compatible(bool enable);
00191
00197 void set_core_profile(bool enable);
00198
00204 void set_compatibility_profile(bool enable);
00205
00211 void set_layer_plane(int value);
00212
00216 private:
00217 CL_SharedPtr<CL_OpenGLWindowDescription_Impl> impl_gl;
00219 };
00220