mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-01 19:48:11 +00:00
start work on raddbg building
This commit is contained in:
@@ -1,33 +1,33 @@
|
||||
// Copyright (c) 2024 Epic Games Tools
|
||||
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
||||
|
||||
#ifndef FONT_PROVIDER_INC_H
|
||||
#define FONT_PROVIDER_INC_H
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Backend Constants
|
||||
|
||||
#define FP_BACKEND_DWRITE 1
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Decide On Backend
|
||||
|
||||
#if !defined(FP_BACKEND) && OS_WINDOWS
|
||||
# define FP_BACKEND FP_BACKEND_DWRITE
|
||||
#endif
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Main Includes
|
||||
|
||||
#include "font_provider.h"
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Backend Includes
|
||||
|
||||
#if FP_BACKEND == FP_BACKEND_DWRITE
|
||||
# include "dwrite/font_provider_dwrite.h"
|
||||
#else
|
||||
# error Font provider backend not specified.
|
||||
#endif
|
||||
|
||||
#endif // FONT_PROVIDER_INC_H
|
||||
// Copyright (c) 2024 Epic Games Tools
|
||||
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
||||
|
||||
#ifndef FONT_PROVIDER_INC_H
|
||||
#define FONT_PROVIDER_INC_H
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Backend Constants
|
||||
|
||||
#define FP_BACKEND_DWRITE 1
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Decide On Backend
|
||||
|
||||
#if !defined(FP_BACKEND) && OS_WINDOWS
|
||||
# define FP_BACKEND FP_BACKEND_DWRITE
|
||||
#endif
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Main Includes
|
||||
|
||||
#include "font_provider.h"
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Backend Includes
|
||||
|
||||
#if FP_BACKEND == FP_BACKEND_DWRITE
|
||||
# include "dwrite/font_provider_dwrite.h"
|
||||
#else
|
||||
# error Font provider backend not specified.
|
||||
#endif
|
||||
|
||||
#endif // FONT_PROVIDER_INC_H
|
||||
|
||||
Reference in New Issue
Block a user