Skip to content

Commit 64bacd2

Browse files
committed
Vulkan: refactor directory structures
1 parent 47be29b commit 64bacd2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ set(LIBFASTFETCH_SRC
246246
src/detection/packages/packages.c
247247
src/detection/terminalfont/terminalfont.c
248248
src/detection/terminalshell/terminalshell.c
249-
src/detection/vulkan.c
249+
src/detection/vulkan/vulkan.c
250250
src/logo/builtin.c
251251
src/logo/image/im6.c
252252
src/logo/image/im7.c

src/detection/gpu/gpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "gpu.h"
22
#include "detection/internal.h"
3-
#include "detection/vulkan.h"
3+
#include "detection/vulkan/vulkan.h"
44

55
const char* ffDetectGPUImpl(FFlist* gpus, const FFinstance* instance);
66

src/detection/gpu/gpu_linux.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "gpu.h"
2-
#include "detection/vulkan.h"
1+
#include "detection/gpu/gpu.h"
2+
#include "detection/vulkan/vulkan.h"
33

44
#ifdef FF_HAVE_LIBPCI
55
#include "common/library.h"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "fastfetch.h"
22
#include "common/thread.h"
3-
#include "detection/vulkan.h"
43
#include "detection/gpu/gpu.h"
4+
#include "detection/vulkan/vulkan.h"
55

66
#ifdef FF_HAVE_VULKAN
77
#include "common/library.h"

src/modules/vulkan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "fastfetch.h"
22
#include "common/printing.h"
3-
#include "detection/vulkan.h"
3+
#include "detection/vulkan/vulkan.h"
44

55
#define FF_VULKAN_MODULE_NAME "Vulkan"
66
#define FF_VULKAN_NUM_FORMAT_ARGS 3

0 commit comments

Comments
 (0)