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 dgKnowItAllBrosHouseBgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouseBgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gKnowItAllBrosHouseBgTex[] = dgKnowItAllBrosHouseBgTex;
#else
static const char gKnowItAllBrosHouseBgTex[] __attribute__((aligned (2))) = dgKnowItAllBrosHouseBgTex;
#endif
#define dgKnowItAllBrosHouse2BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse2BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gKnowItAllBrosHouse2BgTex[] = dgKnowItAllBrosHouse2BgTex;
#else
static const char gKnowItAllBrosHouse2BgTex[] __attribute__((aligned (2))) = dgKnowItAllBrosHouse2BgTex;
#endif
#define dgKnowItAllBrosHouse3BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse3BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gKnowItAllBrosHouse3BgTex[] = dgKnowItAllBrosHouse3BgTex;
#else
static const char gKnowItAllBrosHouse3BgTex[] __attribute__((aligned (2))) = dgKnowItAllBrosHouse3BgTex;
#endif
#define dgKnowItAllBrosHouse4BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse4BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gKnowItAllBrosHouse4BgTex[] = dgKnowItAllBrosHouse4BgTex;
#else
static const char gKnowItAllBrosHouse4BgTex[] __attribute__((aligned (2))) = dgKnowItAllBrosHouse4BgTex;
#endif
#include "align_asset_macro.h"
#define dgKnowItAllBrosHouseBgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouseBgTex"
static const ALIGN_ASSET(2) char gKnowItAllBrosHouseBgTex[] = dgKnowItAllBrosHouseBgTex;
#define dgKnowItAllBrosHouse2BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse2BgTex"
static const ALIGN_ASSET(2) char gKnowItAllBrosHouse2BgTex[] = dgKnowItAllBrosHouse2BgTex;
#define dgKnowItAllBrosHouse3BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse3BgTex"
static const ALIGN_ASSET(2) char gKnowItAllBrosHouse3BgTex[] = dgKnowItAllBrosHouse3BgTex;
#define dgKnowItAllBrosHouse4BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse4BgTex"
static const ALIGN_ASSET(2) char gKnowItAllBrosHouse4BgTex[] = dgKnowItAllBrosHouse4BgTex;