diff --git a/Code/DqnInspect.h b/Code/DqnInspect.h index 6680e77..7084503 100644 --- a/Code/DqnInspect.h +++ b/Code/DqnInspect.h @@ -3,7 +3,7 @@ // // DqnInspect.h - Minimal Inspection System, Single Header, CRT Dependencies Only -// Public Domain or MIT License +// Public Domain or MIT License (see bottom of file) // ================================================================================================= // @@ -558,10 +558,6 @@ struct MetadataEntry FixedArray cpp_decl_to_val; }; -void WriteMetadataInspectionMethods() -{ -} - void ParseCPPEnum(CPPTokeniser *tokeniser) { CPPToken token = CPPTokeniser_NextToken(tokeniser); diff --git a/Data/DqnInspect_TestData.h b/Data/DqnInspect_TestData.h index 16a42bd..6eeff75 100644 --- a/Data/DqnInspect_TestData.h +++ b/Data/DqnInspect_TestData.h @@ -1,8 +1,8 @@ DQN_INSPECT enum struct OpenGLShader { Invalid, - Rect DQN_REFLECT_META(VertexShaderFilePath = "Rect.vert", FragmentShaderFilePath = "Rect.frag"), - Text DQN_REFLECT_META(VertexShaderFilePath = "Text.vert", FragmentShaderFilePath = "Text.frag"), + Rect DQN_INSPECT_META(VertexShaderFilePath = "Rect.vert", FragmentShaderFilePath = "Rect.frag"), + Text DQN_INSPECT_META(VertexShaderFilePath = "Text.vert", FragmentShaderFilePath = "Text.frag"), }; #if 0 @@ -30,7 +30,7 @@ DQN_INSPECT struct OpenGLState // #endif // u32 ebo, vbo, vao; // u32 shaders[(int)OpenGLShader::Count]; - V4 draw_color DQN_REFLECT_META(FriendlyName = "HelloWorld"); + V4 draw_color DQN_INSPECT_META(FriendlyName = "HelloWorld"); V3 lighting_ambient_coeff; // u8 **bitmaps; // FixedArray lights;