mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 10:24:58 +02:00
26 lines
499 B
C
26 lines
499 B
C
#pragma once
|
|
|
|
// This file will be included in "fastfetch.h", do NOT put unnecessary things here
|
|
|
|
#include "common/option.h"
|
|
#include "common/percent.h"
|
|
|
|
typedef enum FFGPUType
|
|
{
|
|
FF_GPU_TYPE_UNKNOWN,
|
|
FF_GPU_TYPE_INTEGRATED,
|
|
FF_GPU_TYPE_DISCRETE,
|
|
} FFGPUType;
|
|
|
|
typedef struct FFGPUOptions
|
|
{
|
|
FFModuleBaseInfo moduleInfo;
|
|
FFModuleArgs moduleArgs;
|
|
|
|
FFGPUType hideType;
|
|
bool temp;
|
|
bool driverSpecific;
|
|
bool forceVulkan;
|
|
FFColorRangeConfig percent;
|
|
} FFGPUOptions;
|