Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-11-15 18:49:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-15 18:49:45 +0300
commit554321c6fbb6bbe97dfc656f314fd9e1abdfab20 (patch)
treed7e1f6efe35feb63c44a24bf1cbc439b867e1ac3 /source/blender/windowmanager/WM_api.h
parentd61f2cac18528ce0a77b528a50d7a50e09b3e5cd (diff)
parentb266b1034f95b9007433cb8f0544aee900ddd208 (diff)
Merge branch 'blender-v2.81-release'
Diffstat (limited to 'source/blender/windowmanager/WM_api.h')
-rw-r--r--source/blender/windowmanager/WM_api.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h
index 3abb3d8bfac..98cd964d02e 100644
--- a/source/blender/windowmanager/WM_api.h
+++ b/source/blender/windowmanager/WM_api.h
@@ -110,8 +110,8 @@ int WM_window_pixels_x(const struct wmWindow *win);
int WM_window_pixels_y(const struct wmWindow *win);
void WM_window_rect_calc(const struct wmWindow *win, struct rcti *r_rect);
void WM_window_screen_rect_calc(const struct wmWindow *win, struct rcti *r_rect);
-bool WM_window_is_fullscreen(struct wmWindow *win);
-bool WM_window_is_maximized(struct wmWindow *win);
+bool WM_window_is_fullscreen(const struct wmWindow *win);
+bool WM_window_is_maximized(const struct wmWindow *win);
void WM_windows_scene_data_sync(const ListBase *win_lb, struct Scene *scene) ATTR_NONNULL();
struct Scene *WM_windows_scene_get_from_screen(const struct wmWindowManager *wm,
@@ -165,7 +165,7 @@ struct wmWindow *WM_window_open_temp(struct bContext *C,
int sizey,
int space_type,
bool dialog);
-void WM_window_set_dpi(wmWindow *win);
+void WM_window_set_dpi(const wmWindow *win);
bool WM_stereo3d_enabled(struct wmWindow *win, bool only_fullscreen_test);