mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
|
|
#define FF_GPU_TEMP_UNSET (0/0.0)
|
|
#define FF_GPU_CORE_COUNT_UNSET -1
|
|
#define FF_GPU_VMEM_SIZE_UNSET ((uint64_t)-1)
|
|
|
|
extern const char* FF_GPU_VENDOR_NAME_APPLE;
|
|
extern const char* FF_GPU_VENDOR_NAME_AMD;
|
|
extern const char* FF_GPU_VENDOR_NAME_INTEL;
|
|
extern const char* FF_GPU_VENDOR_NAME_NVIDIA;
|
|
extern const char* FF_GPU_VENDOR_NAME_VMWARE;
|
|
extern const char* FF_GPU_VENDOR_NAME_PARALLEL;
|
|
extern const char* FF_GPU_VENDOR_NAME_MICROSOFT;
|
|
extern const char* FF_GPU_VENDOR_NAME_REDHAT;
|
|
extern const char* FF_GPU_VENDOR_NAME_ORACLE;
|
|
|
|
typedef struct FFGPUMemory
|
|
{
|
|
uint64_t total;
|
|
uint64_t used;
|
|
} FFGPUMemory;
|
|
|
|
typedef struct FFGPUResult
|
|
{
|
|
FFGPUType type;
|
|
FFstrbuf vendor;
|
|
FFstrbuf name;
|
|
FFstrbuf driver;
|
|
double temperature;
|
|
int coreCount;
|
|
FFGPUMemory dedicated;
|
|
FFGPUMemory shared;
|
|
uint32_t vulkanDeviceId; // Only used for vulkan
|
|
} FFGPUResult;
|
|
|
|
const char* ffDetectGPU(const FFGPUOptions* options, FFlist* result);
|
|
const char* ffDetectGPUImpl(const FFGPUOptions* options, FFlist* gpus);
|
|
|
|
const char* ffGetGPUVendorString(unsigned vendorId);
|