further progress on eliminating file entities; further entity simplification; set up external identifier resolution map for evaluating 'meta' variables; sketch out generalized entity serialization path

This commit is contained in:
Ryan Fleury
2024-08-13 11:39:25 -07:00
parent 057d4d485e
commit 6d30455e76
17 changed files with 467 additions and 359 deletions
+10
View File
@@ -1577,6 +1577,16 @@ mule_bswap_u32(unsigned int x)
static void
fancy_viz_eval_tests(void)
{
//- rjf: windows -> GetLastError
#if _WIN32
DWORD error_code = 0;
SetLastError(1234);
error_code = GetLastError();
SetLastError(4567);
error_code = GetLastError();
(void)error_code;
#endif
//- rjf: colors
float example_color_4f32[4] = {1.00f, 0.85f, 0.25f, 1.00f};
unsigned int example_color_u32 = 0xff6f30ff;