Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/WM_api.h
| Show First 20 Lines • Show All 121 Lines • ▼ Show 20 Lines | |||||
| void WM_reinit_gizmomap_all(struct Main *bmain); | void WM_reinit_gizmomap_all(struct Main *bmain); | ||||
| /** | /** | ||||
| * Needed for cases when operators are re-registered | * Needed for cases when operators are re-registered | ||||
| * (when operator type pointers are stored). | * (when operator type pointers are stored). | ||||
| */ | */ | ||||
| void WM_script_tag_reload(void); | void WM_script_tag_reload(void); | ||||
| wmWindow *WM_window_find_under_cursor(const wmWindowManager *wm, | wmWindow *WM_window_find_under_cursor(wmWindow *win, const int mval[2], int r_mval[2]); | ||||
| const wmWindow *win_ignore, | |||||
| const wmWindow *win, | |||||
| const int mval[2], | |||||
| int r_mval[2]); | |||||
| void WM_window_pixel_sample_read(const wmWindowManager *wm, | void WM_window_pixel_sample_read(const wmWindowManager *wm, | ||||
| const wmWindow *win, | const wmWindow *win, | ||||
| const int pos[2], | const int pos[2], | ||||
| float r_col[3]); | float r_col[3]); | ||||
| uint *WM_window_pixels_read(struct wmWindowManager *wm, struct wmWindow *win, int r_size[2]); | uint *WM_window_pixels_read(struct wmWindowManager *wm, struct wmWindow *win, int r_size[2]); | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 1,550 Lines • Show Last 20 Lines | |||||