We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 913af5c commit 10b4a7cCopy full SHA for 10b4a7c
1 file changed
libxapp/xapp-gpu-offload-helper.h
@@ -19,16 +19,17 @@ GType xapp_gpu_info_get_type (void) G_GNUC_CONST;
19
* @is_default: Whether this GPU is used by default.
20
* @display_name: User-visible name of the GPU.
21
* @env_strv: (array zero-terminated=1): A string array containing alternating environment variables names and values to use to enable the gpu.
22
+ * @is_discrete: Whether this GPU is a discrete GPU.
23
*
24
* Information about a single GPU used for offloading. The length of @env_strv will always be an even number.
25
*/
26
struct _XAppGpuInfo
27
{
28
gint id;
29
gboolean is_default;
- gboolean is_discrete;
30
gchar *display_name;
31
gchar **env_strv;
32
+ gboolean is_discrete;
33
};
34
35
XAppGpuOffloadHelper *xapp_gpu_offload_helper_get (void);
0 commit comments