summaryrefslogtreecommitdiff
path: root/src/pixels.h
diff options
context:
space:
mode:
authorNikita Kostovsky <nikita@kostovsky.me>2026-07-11 18:34:34 +0200
committerNikita Kostovsky <nikita@kostovsky.me>2026-07-11 18:35:26 +0200
commit169ddcb09cd26fa0a685f691f63b49e70e1be93b (patch)
tree201622d62d02db2719998f5510b70f4fda03e1d8 /src/pixels.h
parent7703c9efc6768d3a25eec4266594ab594cc91d4c (diff)
minor fixes and debugging
Diffstat (limited to 'src/pixels.h')
-rw-r--r--src/pixels.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/pixels.h b/src/pixels.h
index 06a8654..07f1c8f 100644
--- a/src/pixels.h
+++ b/src/pixels.h
@@ -1,10 +1,8 @@
#pragma once
#include <array>
-#include <mutex>
-
-#include "fuck_intel.h"
+#include <QDebug>
#include <QString>
#include "constants.h"
@@ -52,4 +50,12 @@ struct Pixels
// private:
// std::mutex m_mtx;
+
+ /*!
+ * \brief debugPrintIfInvalid - print profile if invalid
+ * \return `true` if valid, `false` otherwise
+ */
+ bool debugPrintIfInvalid() const;
};
+
+QDebug &operator<<(QDebug &debug, const Pixels &pixels); \ No newline at end of file