Blender V4.3
wm_window_private.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2019 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8#pragma once
9
10#include "BLI_sys_types.h"
11
12#include "GHOST_Types.h"
13
14#include "GPU_context.hh"
15
16struct bContext;
17
18/* *************** Message box *************** */
19/* `WM_ghost_show_message_box` is implemented in `wm_windows.c` it is
20 * defined here as it was implemented to be used for showing
21 * a message to the user when the platform is not (fully) supported.
22 *
23 * In all other cases this message box should not be used. */
24void WM_ghost_show_message_box(const char *title,
25 const char *message,
26 const char *help_label,
27 const char *continue_label,
28 const char *link,
29 GHOST_DialogOptions dialog_options);
30
32
GHOST_TDrawingContextType
GHOST_DialogOptions
Definition GHOST_Types.h:80
void wm_test_gpu_backend_fallback(bContext *C)
void wm_test_opengl_deprecation_warning(bContext *C)
GHOST_TDrawingContextType wm_ghost_drawing_context_type(const eGPUBackendType gpu_backend)
void WM_ghost_show_message_box(const char *title, const char *message, const char *help_label, const char *continue_label, const char *link, GHOST_DialogOptions dialog_options)