aboutsummaryrefslogtreecommitdiff
path: root/src/utils.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-03-30 18:11:25 +0200
committerdec05eba <dec05eba@protonmail.com>2025-03-30 18:11:25 +0200
commit3e3d8a179f270a01705491851ad1f4a5da642090 (patch)
treebd249351f3f22c05036a33a4dd3a3bf662d6a1c9 /src/utils.c
parent9599834d9cc1c9575792bb5b85de083db3cde6a3 (diff)
Fix incorrect region for region capture after compute shader change5.3.4
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/utils.c b/src/utils.c
index 24f5a6d..d3b7e59 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -427,14 +427,6 @@ bool gl_get_gpu_info(gsr_egl *egl, gsr_gpu_info *info) {
return supported;
}
-bool version_greater_than(int major, int minor, int patch, int other_major, int other_minor, int other_patch) {
- return (major > other_major) || (major == other_major && minor > other_minor) || (major == other_major && minor == other_minor && patch > other_patch);
-}
-
-bool gl_driver_version_greater_than(const gsr_gpu_info *gpu_info, int major, int minor, int patch) {
- return version_greater_than(gpu_info->driver_major, gpu_info->driver_minor, gpu_info->driver_patch, major, minor, patch);
-}
-
bool try_card_has_valid_plane(const char *card_path) {
drmVersion *ver = NULL;
drmModePlaneResPtr planes = NULL;