Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make VerifiedDX11 Great Again #9

Conversation

clayne
Copy link
Contributor

@clayne clayne commented Aug 12, 2023

Somewhere along the way as part of the vs2022 changes, VerifiedDX11 picked up a bunch of options it wasn't previously using. Notable changes:

  • StringPooling: Set back to default for some projects.

  • FunctionLevelLinking: Set back to default for some projects.

  • BufferSecurityCheck: Enable.

  • ForceConformanceInForLoopScope: Enable.

  • MinimalRebuild: Disable. This destroys build time performance by an order of magnitude as it disables the compiler's use of multiprocessing (/MP). Plus it's deprecated.

  • RuntimeTypeInfo: Enable (as it was previously enabled).

  • xrEngine: Fix broken library paths which were referring to the 'Release' config. This is what caused the libogg_static.lib error.

  • ReShadeCompat: Make consistent with the other 3rd party projects.

  • VerifiedDX11 is basically the equivalent of DX11 but with additional debugging and security options enabled. As such it should follow the paradigm of xrEngine using the 'VerifiedDX11' config but everything else using a generic 'Verified' config.

  • xrCore: xrMemory.h: Use typeinfo rather than typeinfo.h. This was missed as part of the vs2022 cleanups but only was apparent with DEBUG enabled.

  • xrGame: Inventory.cpp: Do not rely on /Zc:forScope-. Noticed while reenabling ForceConformanceInForLoopScope.

  • xrEngine: x_ray.cpp: Remove stray character.

Somewhere along the way as part of the vs2022 changes, VerifiedDX11
picked up a bunch of options it wasn't previously using. Notable
changes:

* StringPooling: Set back to default for some projects.

* FunctionLevelLinking: Set back to default for some projects.

* BufferSecurityCheck: Enable.

* ForceConformanceInForLoopScope: Enable.

* MinimalRebuild: Disable. This destroys build time performance by
  an order of magnitude as it disables the compiler's use of
  multiprocessing (/MP). Plus it's deprecated.

* RuntimeTypeInfo: Enable (as it was previously enabled).

* xrEngine: Fix broken library paths which were referring to the
  'Release' config. This is what caused the libogg_static.lib error.

* ReShadeCompat: Make consistent with the other 3rd party projects.

* VerifiedDX11 is basically the equivalent of DX11 but with additional
  debugging and security options enabled. As such it should follow the
  paradigm of xrEngine using the 'VerifiedDX11' config but everything
  else using a generic 'Verified' config.

* xrCore: xrMemory.h: Use typeinfo rather than typeinfo.h. This was
  missed as part of the vs2022 cleanups but only was apparent with
  DEBUG enabled.

* xrGame: Inventory.cpp: Do not rely on /Zc:forScope-. Noticed while
  reenabling ForceConformanceInForLoopScope.

* xrEngine: x_ray.cpp: Remove stray character.
@themrdemonized themrdemonized merged commit 834e988 into themrdemonized:all-in-one-vs2022 Aug 12, 2023
themrdemonized added a commit that referenced this pull request Aug 12, 2023
…-again

Make VerifiedDX11 Great Again

(cherry picked from commit 834e988)
@clayne clayne deleted the 1691858218-make-verified-dx11-great-again branch August 19, 2023 15:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants