Simplify Asset Headers (#2474)

This commit is contained in:
Amaro Martínez
2023-03-02 09:37:47 -05:00
committed by GitHub
parent 21466192e5
commit d3f864cea9
1075 changed files with 60897 additions and 139767 deletions

View File

@@ -1,23 +1,12 @@
#pragma once
#define dgMidosHouseBgTex "__OTR__textures/vr_K4VR_static/gMidosHouseBgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gMidosHouseBgTex[] = dgMidosHouseBgTex;
#else
static const char gMidosHouseBgTex[] __attribute__((aligned (2))) = dgMidosHouseBgTex;
#endif
#define dgMidosHouse2BgTex "__OTR__textures/vr_K4VR_static/gMidosHouse2BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gMidosHouse2BgTex[] = dgMidosHouse2BgTex;
#else
static const char gMidosHouse2BgTex[] __attribute__((aligned (2))) = dgMidosHouse2BgTex;
#endif
#define dgMidosHouse3BgTex "__OTR__textures/vr_K4VR_static/gMidosHouse3BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gMidosHouse3BgTex[] = dgMidosHouse3BgTex;
#else
static const char gMidosHouse3BgTex[] __attribute__((aligned (2))) = dgMidosHouse3BgTex;
#endif
#include "align_asset_macro.h"
#define dgMidosHouseBgTex "__OTR__textures/vr_K4VR_static/gMidosHouseBgTex"
static const ALIGN_ASSET(2) char gMidosHouseBgTex[] = dgMidosHouseBgTex;
#define dgMidosHouse2BgTex "__OTR__textures/vr_K4VR_static/gMidosHouse2BgTex"
static const ALIGN_ASSET(2) char gMidosHouse2BgTex[] = dgMidosHouse2BgTex;
#define dgMidosHouse3BgTex "__OTR__textures/vr_K4VR_static/gMidosHouse3BgTex"
static const ALIGN_ASSET(2) char gMidosHouse3BgTex[] = dgMidosHouse3BgTex;