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,30 +1,15 @@
#pragma once
#define dgStableBgTex "__OTR__textures/vr_MLVR_static/gStableBgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBgTex[] = dgStableBgTex;
#else
static const char gStableBgTex[] __attribute__((aligned (2))) = dgStableBgTex;
#endif
#define dgStable2BgTex "__OTR__textures/vr_MLVR_static/gStable2BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gStable2BgTex[] = dgStable2BgTex;
#else
static const char gStable2BgTex[] __attribute__((aligned (2))) = dgStable2BgTex;
#endif
#define dgStable3BgTex "__OTR__textures/vr_MLVR_static/gStable3BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gStable3BgTex[] = dgStable3BgTex;
#else
static const char gStable3BgTex[] __attribute__((aligned (2))) = dgStable3BgTex;
#endif
#define dgStable4BgTex "__OTR__textures/vr_MLVR_static/gStable4BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gStable4BgTex[] = dgStable4BgTex;
#else
static const char gStable4BgTex[] __attribute__((aligned (2))) = dgStable4BgTex;
#endif
#include "align_asset_macro.h"
#define dgStableBgTex "__OTR__textures/vr_MLVR_static/gStableBgTex"
static const ALIGN_ASSET(2) char gStableBgTex[] = dgStableBgTex;
#define dgStable2BgTex "__OTR__textures/vr_MLVR_static/gStable2BgTex"
static const ALIGN_ASSET(2) char gStable2BgTex[] = dgStable2BgTex;
#define dgStable3BgTex "__OTR__textures/vr_MLVR_static/gStable3BgTex"
static const ALIGN_ASSET(2) char gStable3BgTex[] = dgStable3BgTex;
#define dgStable4BgTex "__OTR__textures/vr_MLVR_static/gStable4BgTex"
static const ALIGN_ASSET(2) char gStable4BgTex[] = dgStable4BgTex;