mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:14:37 +02:00
27 lines
534 B
C
27 lines
534 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 tempConfig;
|
|
FFColorRangeConfig percent;
|
|
} FFGPUOptions;
|