Regenerated doc + final submit for now

This commit is contained in:
2026-07-22 17:37:01 -04:00
parent c436639ddd
commit c0d40ef3e4
101 changed files with 869 additions and 781 deletions
@@ -4,7 +4,7 @@
- Header: `Juliet\include\Graphics\GraphicsConfig.h`
## AI Description
Defines the Juliet graphics configuration structure within the C++ module. It specifies supported driver types (DirectX 12, All) and includes a toggle for debug features to manage rendering backend compatibility across applications.
This C++ component is designed to manage graphics configuration settings for a game or application. It includes an enumeration `DriverType` with two possible values: `Any` and `DX12`, which represent different types of graphics drivers. The `GraphicsConfig` struct contains two members: `PreferredDriver`, which specifies the preferred graphics driver, and `EnableDebug`, which indicates whether debug mode should be enabled for graphics operations. This configuration is essential for controlling how graphics are rendered in a game or application, allowing developers to optimize performance and troubleshoot issues effectively.
## Symbols