jackun
e61321717e
[OpenGL] Use MESA_query_renderer if avail; GL "WSI" enum
2023-04-24 22:12:38 +03:00
Arvind Doobary
d41a74ca1a
Show amdgpu junction and memory temp, if available
...
Added config parameter `gpu_junction_temp` and `gpu_mem_temp`
Closes #841
2023-04-23 17:30:21 +03:00
FlightlessMango
1093de8c44
nvml: fan: get rpm instead of percentage
2023-04-23 07:27:22 +02:00
jackun
238a621c11
Use snprintf instead
2023-04-22 22:12:47 +03:00
FlightlessMango
c7ab967b92
Remove MANGOAPP ifdefs
2023-04-22 03:59:48 +02:00
FlightlessMango
83d265637e
params: preset 4: add throttling
2023-04-22 03:59:28 +02:00
FlightlessMango
12b16247ce
hud elements: gpu fan: add next col/row func
2023-04-22 03:59:08 +02:00
FlightlessMango
69e4b2d877
params: update preset 4
2023-04-22 00:02:21 +02:00
FlightlessMango
d99e48db5d
hud elements: cpu_power and gpu_power: hide decimal above 3 digits
2023-04-21 23:56:15 +02:00
FlightlessMango
11bc5111eb
mangoapp: move some variables to hudelements
2023-04-21 23:21:59 +02:00
FlightlessMango
8e4857a5c6
mangoapp: frame_timing: set height when not horizontal
2023-04-20 03:42:32 +02:00
FlightlessMango
7eea724f37
amdgpu: hwmon fan: fix typo
2023-04-20 03:14:08 +02:00
FlightlessMango
016728b450
nvctrl: fan speed
2023-04-20 03:10:21 +02:00
FlightlessMango
2df384cdd7
nvml: fan speed
2023-04-20 03:09:14 +02:00
FlightlessMango
5aec3d817b
amdgpu: fan speed
2023-04-20 03:08:25 +02:00
FlightlessMango
4b69f23fb5
Add gpu_fan param and hwmon fan reading
...
Co-authored-by: Andreas Rachev <andreasratchev@gmail.com>
2023-04-20 03:07:39 +02:00
Alessandro Toia
78d99a6aab
Fix exec_name overlapping with previous column when not in compact mode
2023-04-18 21:47:47 -07:00
FlightlessMango
7f945627f5
params: fix issue where env options were not applied
2023-04-18 00:31:55 +02:00
FlightlessMango
7225aaa628
parse_overlay_env: don't use sort_elements here
2023-04-18 00:19:05 +02:00
FlightlessMango
a67a6bc79d
hud elements: exec_name: push the name one column over
2023-04-18 00:17:24 +02:00
FlightlessMango
034b378e10
hud elements: replace ImGuiTableSetColumnIndex with TableNextColumn
2023-04-16 22:28:46 +02:00
jackun
06edee4071
Revert "X11 keyboard poller thread"
...
This reverts commit 1055bc0c6c
.
Needs some more time to bake. Too random if it works or not.
2023-04-16 20:02:34 +03:00
Atemu
39080290a2
blacklist: add SteamVR's vrcompositor
...
Limiting frame rate in vrcompositor has catastrohpic consequences and it's not
something the user will ever see the HUD on. Every SteamVR user with a global
frame rate limit has to explicitly blacklist vrcompositor, so it's better to
have this upstream.
2023-04-16 16:29:32 +02:00
Kira Bruneau
2918b6ef1b
amdgpu: fix reading apu power & temperature
2023-04-16 03:32:49 +02:00
FlightlessMango
0a2b8a73ab
Fix horizontal separator drawing in the wrong place
2023-04-16 03:24:21 +02:00
FlightlessMango
544589aa20
legacy_elements: don't add to functions vector unless it's enabled
2023-04-16 02:20:57 +02:00
FlightlessMango
8f79e9cef3
sampler: don't apply picmip unless it's set in config
2023-04-15 20:29:47 +02:00
Oliver Chang
a155c10df3
Add missing division for fallback AMD CPU power calculation.
2023-04-13 18:37:59 +02:00
FlightlessMango
05444cb021
gpu: amdgpuinfo: ifdef linux for windows build
2023-04-09 19:18:35 +02:00
FlightlessMango
b8bd09d638
More windows fixes
2023-04-09 19:06:46 +02:00
FlightlessMango
302fb6ad19
windows build: use mingw d3d12 headers instead of wine
2023-04-09 18:40:52 +02:00
FlightlessMango
c9d3a70a48
sampler: use instance params
2023-04-09 17:01:54 +02:00
Alessandro Toia
328df38ecc
Remove not needed cerr
2023-04-06 22:43:09 -07:00
Alessandro Toia
4b2e78a9d7
vulkan: make sure to parse config before checking parameters
2023-04-06 22:41:53 -07:00
FlightlessMango
070fa1be84
presets: don't clear options when parsing
2023-04-06 09:53:02 +02:00
FlightlessMango
915a3babad
Add preset param and allow for preset config
2023-04-06 08:35:44 +02:00
FlightlessMango
a6715b1bf6
Hud elements: Put frame_timing inside a child window to prevent it messing with the parent layout
...
Co-authored-by: Alessandro <gort818@gmail.com>
2023-04-06 07:44:21 +02:00
sfrcorne
020e8485e2
small fix for average cpu_power 2
2023-04-04 20:53:19 +02:00
sfrcorne
2187b9ef19
small fix for average cpu_power
2023-04-04 02:42:49 +02:00
sfrcorne
a98a402619
Fix for AMD Ryzen 7000 CPU when using the iGPU.
2023-04-04 02:42:49 +02:00
sfrcorne
cd74b27da2
Cleanup cpu.cpp and and support for gpu_metrics_v2_3
2023-04-04 02:42:49 +02:00
Emil Velikov
1b3f8b29bc
meson: restrict most libMangoHud.so symbols
...
With the introduction of the static library, we forgot the version
script. As a result we were spilling all the internal symbols.
Fixes: d4aa74c
("Create static and shared libs separately")
Closes: https://github.com/flightlessmango/MangoHud/issues/933
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2023-04-03 02:21:42 +02:00
FlightlessMango
ce5e0683f0
Nearest filter param
2023-04-03 00:04:24 +02:00
FlightlessMango
4fb0bb328b
Bicubic filtering param
2023-04-03 00:04:24 +02:00
FlightlessMango
de29e057de
Trilinear filtering param
2023-04-03 00:04:24 +02:00
FlightlessMango
5fe07a0ac3
Anisotropic filtering param
2023-04-03 00:04:24 +02:00
FlightlessMango
9b9e6e7b68
Sampler hook and picmip param
2023-04-03 00:04:24 +02:00
Emil Velikov
80d394c0cd
meson: make libMangoHud.so append_libdir_mangohud aware
...
The library does not honour the correct install location. Seems like it
was broken for a while and I didn't catch it with my recent rework...
Since all the scripts flip the default "true" to "false" 🤦
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2023-04-02 23:11:05 +02:00
FlightlessMango
c037a0cca7
amdgpu: add gpu_metrics_v2_3
2023-03-28 22:29:59 +02:00
FlightlessMango
d59375b0c9
amdgpu: add support for gpu_metrics_v2_3
2023-03-28 22:27:12 +02:00