Naming & Style Conventions


Back to Main Index

General formatting :

All macros, structs, classes and functions prefixed with underscore and double underscore ("_" and "__") are not meant to be used by user applications directly (even they could, if you like). Those are for VortexGE internal use, so they might change without notice.

However, the macros inside "lib/Base/VGch.h", even they also have underscores, may be used by user applications.


VortexGE was used to use data and variables naming conventions derived from a notation called "The Hungarian Prefix". This convention is abandoned now. Newer code will not use this convention anymore, however older code will be most likely left untouched (unless if they are massively edited for improvements and/or bugs fixing).


Back to Main Index