Files
djhackersdev_bemanitools/src/main/nv/module.h
T
icex2 61691f06a7 feat: nvgpu tool for tweaking nvidia gpu driver settings
An open source re-implementation of the “NvDisplayConfigLDJ"
tool with additional enhancements.

This can be used to tweak your nvidia GPU driver settings to
create custom display timings to address IIDX’s requirement
if expecting proper display timings. This can also be used for
any legacy IIDX versions that even expect very specific display
timings, e.g. 59.95 or 60.05 hz.

Furthermore, creating application profiles allows further tweaks
to important GPU settings such as the current performance mode
setting. This is crucial to ensure the GPU is not going into any
kind of power saving states which results in non-smooth
scrolling during gameplay and micro stuttering that cannot
be measured on application level.
2025-02-07 12:33:16 +01:00

13 lines
293 B
C

#ifndef NVGPU_CONFIG_NVAPI_MODULE_H
#define NVGPU_CONFIG_NVAPI_MODULE_H
#include "nv/api.h"
typedef struct nv_module nv_module_t;
void nv_module_load(nv_module_t **module);
void nv_module_free(nv_module_t **module);
void nv_module_api_get(const nv_module_t *module, nv_api_t *api);
#endif