Advertisement
ItsTotallyRSX

Untitled

Jan 24th, 2020
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.91 KB | None | 0 0
  1.         [] (GfxWorld *gfx)
  2.         {
  3.             gfx->name = GfxWorldName.c_str();
  4.             gfx->baseName = WorldName.c_str();
  5.  
  6.             LogInfo("Loading material names");
  7.             LoadMaterials();
  8.  
  9.             LogInfo("Loading Primary Lights");
  10.             LogInfo("    Assigning sunlight/foglight");
  11.             gfx->sunLight = &SunLight;
  12.             gfx->sunParse = GetSunParse();
  13.  
  14.             LogInfo("    Filling primary light meta data");
  15.             AssignPrimaryLights(gfx);
  16.  
  17.             LogInfo("Loading lightgrid");
  18.  
  19.             LogInfo("    Loading light regions");
  20.             R_LoadLightRegions(gfx);
  21.  
  22.             LogInfo("    Loading light grid colors");
  23.             R_LoadLightGridColors(gfx);
  24.  
  25.             LogInfo("    Loading row data");
  26.             R_LoadLightGridRowData(gfx);
  27.  
  28.             LogInfo("    Loading grid entries");
  29.             R_LoadLightGridEntries(gfx);
  30.  
  31.             LogInfo("    Loading light grid header");
  32.             R_LoadLightGridHeader(gfx);
  33.  
  34.             LogInfo("    Getting offset");
  35.             LoadLightGridOffset(gfx);
  36.  
  37.             LogInfo("Loading submodels");
  38.             R_LoadSubmodels(gfx);
  39.  
  40.             LogInfo("Loading geometry");
  41.  
  42.             LogInfo("Loading portal verts");
  43.  
  44.             LogInfo("Axis Aligned Bounding Boxes... for whatever reason");
  45.  
  46.             LogInfo("Loading cells");
  47.  
  48.             LogInfo("Loading portals");
  49.  
  50.             LogInfo("Nodes and Leafs");
  51.  
  52.             LogInfo("Sorting surfaces and materials");
  53.  
  54.             LogInfo("Loading entities");
  55.  
  56.             LogInfo("Post-process entities");
  57.  
  58.             LogInfo("Fixing up AABB trees");
  59.  
  60.             LogInfo("Initializing shadow maps");
  61.  
  62.             LogInfo("Loading outdoor bounds from entity string");
  63.  
  64.             LogInfo("Loading NevisT6 cake (fog volumes, exposure, and ???)");
  65.  
  66.             LogInfo("Initializing runtime buffers");
  67.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement