~mronetwo

Gothenburg, Sweden

https://ciesie.com

~mronetwo/brain-dump

Last active 2 years ago

~mronetwo/example-list

Last active 2 years ago

~mronetwo/time-tracker

Last active 3 years ago
View more

Recent activity

[PATCH v2] First commit 3 years ago

From Michal Ciesielski to ~mronetwo/example-list

From: Michal Ciesielski <michal.ciesielski@cybercom.com>

---
 README.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/README.md b/README.md
index 10ddd6d..d805070 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,4 @@
Hello!

1 - Commit change
[message trimmed]

[PATCH] First commit 3 years ago

From Michal Ciesielski to ~mronetwo/example-list

From: Michal Ciesielski <michal.ciesielski@cybercom.com>

---
 README.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/README.md b/README.md
index 10ddd6d..d805070 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,4 @@
Hello!

1 - Commit change
[message trimmed]

[PATCH] First commit 3 years ago

From Michal Ciesielski to ~mronetwo/example-list

From: Michal Ciesielski <michal.ciesielski@cybercom.com>

---
 README.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/README.md b/README.md
index 10ddd6d..cc4adcd 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,3 @@
Hello!

1 - Commit change
[message trimmed]

[PATCH Megapixels] Introduce a memory subsystem for saving images 3 years ago

From Michal Ciesielski to ~martijnbraam/public-inbox

From: mronetwo <ciesielskimm@gmail.com>

---
It would be good to have a memory subsystem for the images memory. That way there is no malloc/free
juggling. The memory can stay allocated for the entirety of the app running - no need to call free.
In the future we can hold images in that memory for compositing. That will be way faster from that
memory instead of writing each file to persistent storage. Hope this fits into the vision behind
this project.

 io_pipeline.c      |  9 ++++++---
 main.c             |  6 ++++++
 memory.c           | 34 ++++++++++++++++++++++++++++++++++
 memory.h           | 21 +++++++++++++++++++++
 meson.build        | 16 +++++++++++++++-
[message trimmed]

Re: [PATCH Megapixels] Read slider value when changing from auto to manual 3 years ago

From MichaƂ Ciesielski to ~martijnbraam/public-inbox

I've resent this changes since the first version was broken (used
widget and not the control_slider). Is it ok to resend it with the
same subject line? I'm new to the mailing list workflow. Sorry for the
mess.

[PATCH Megapixels] Read slider value when changing from auto to manual 3 years ago

From Michal Ciesielski to ~martijnbraam/public-inbox

From: Michal Ciesielski <michal.ciesielski@smarteye.se>

The user might have moved the slider while in Auto. When exiting Auto
mode the value and the slider will be desynced. This change syncs the
value with the slider position when entering Manual mode.
---
 main.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/main.c b/main.c
index 4e8ff00..675f565 100644
--- a/main.c
+++ b/main.c
@@ -454,6 +454,26 @@ on_control_auto_toggled(GtkToggleButton *widget, gpointer user_data)
[message trimmed]

[PATCH Megapixels] Read slider value when changing from auto to manual 3 years ago

From Michal Ciesielski to ~martijnbraam/public-inbox

From: Michal Ciesielski <michal.ciesielski@smarteye.se>

The user might have moved the slider while in Auto. When exiting Auto
mode the value and the slider will be desynced. This change syncs the
value with the slider position when entering Manual mode.
---
 main.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/main.c b/main.c
index 4e8ff00..9b7b77c 100644
--- a/main.c
+++ b/main.c
@@ -454,6 +454,26 @@ on_control_auto_toggled(GtkToggleButton *widget, gpointer user_data)
[message trimmed]