This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit e6b43c2e0856779f99a18564a8a0c8fe4cef5de6
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Thu Oct 10 07:59:20 2024 +0100
gl engine - compress outbuf a little
---
src/modules/evas/engines/gl_x11/evas_engine.h | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/src/modules/evas/engines/gl_x11/evas_engine.h b/src/modules/evas/engines/gl_x11/evas_engine.h
index 78af5bed5d..4ee08d5ad5 100644
--- a/src/modules/evas/engines/gl_x11/evas_engine.h
+++ b/src/modules/evas/engines/gl_x11/evas_engine.h
@@ -95,16 +95,17 @@ struct _Outbuf
Colormap colormap;
Window win;
unsigned int w, h;
- int screen;
- int depth;
- int alpha;
- int rot;
- int prev_age;
int frame_cnt;
- int vsync;
+ short rot;
+ char screen;
+ char prev_age;
+ char buffer_age;
+ char depth;
unsigned char lost_back : 1;
unsigned char surf : 1;
+ unsigned char alpha : 1;
+ unsigned char vsync : 1;
struct {
unsigned char drew : 1;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.