Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1,126
Issues
1,126
List
Boards
Labels
Service Desk
Milestones
Merge Requests
151
Merge Requests
151
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gtk
Commits
2c6564c8
Commit
2c6564c8
authored
Jun 26, 2006
by
Michael David Emmel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ifdef to compile with 0.9.24 removes creating a child GdkWindow
since it uses functionality only in directfb cvs
parent
776ef101
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
ChangeLog
ChangeLog
+5
-0
ChangeLog.pre-2-10
ChangeLog.pre-2-10
+5
-0
gdk/directfb/gdkdirectfb.h
gdk/directfb/gdkdirectfb.h
+4
-0
gdk/directfb/gdkwindow-directfb.c
gdk/directfb/gdkwindow-directfb.c
+3
-1
No files found.
ChangeLog
View file @
2c6564c8
2006-06-26 Michael Emmel <mike.emmel@gmail.com>
* gdk/directfb/gdkdirectfb.h: added ifdef to compile with directfb 0.9.24
* gdk/directfb/gdkwindow-directfb.c: ifdef depend on directfb cvs
2006-06-26 Kristian Rietveld <kris@gtk.org>
Make the insert and set functions somewhat more convenient.
...
...
ChangeLog.pre-2-10
View file @
2c6564c8
2006-06-26 Michael Emmel <mike.emmel@gmail.com>
* gdk/directfb/gdkdirectfb.h: added ifdef to compile with directfb 0.9.24
* gdk/directfb/gdkwindow-directfb.c: ifdef depend on directfb cvs
2006-06-26 Kristian Rietveld <kris@gtk.org>
Make the insert and set functions somewhat more convenient.
...
...
gdk/directfb/gdkdirectfb.h
View file @
2c6564c8
...
...
@@ -85,8 +85,12 @@ GdkVisual * gdk_directfb_visual_by_format (DFBSurfacePixelFormat pixel_format
IDirectFBWindow
*
gdk_directfb_window_lookup
(
GdkWindow
*
window
);
IDirectFBSurface
*
gdk_directfb_surface_lookup
(
GdkWindow
*
window
);
#if (DIRECTFB_MICRO_VERSION > 24)
GdkWindow
*
gdk_directfb_create_child_window
(
GdkWindow
*
parent
,
IDirectFBSurface
*
subsurface
);
#endif
G_END_DECLS
...
...
gdk/directfb/gdkwindow-directfb.c
View file @
2c6564c8
...
...
@@ -2485,8 +2485,9 @@ gdk_window_get_frame_extents (GdkWindow *window,
/**
* Given a directfb window and a subsurface of that window
* create a gdkwindow ch
a
ild wrapper
* create a gdkwindow child wrapper
*/
#if (DIRECTFB_MICRO_VERSION > 24)
GdkWindow
*
gdk_directfb_create_child_window
(
GdkWindow
*
parent
,
IDirectFBSurface
*
subsurface
)
{
...
...
@@ -2532,6 +2533,7 @@ GdkWindow *gdk_directfb_create_child_window(GdkWindow *parent,
return
window
;
}
#endif
/*
* The wrapping is not perfect since directfb does not give full access
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment