Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
fbbf3ba4
Commit
fbbf3ba4
authored
Jan 09, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Get rid of the CreateDIBSection driver entry point.
parent
71ea68b6
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1 addition
and
16 deletions
+1
-16
dc.c
dlls/gdi32/dibdrv/dc.c
+0
-1
driver.c
dlls/gdi32/driver.c
+0
-6
init.c
dlls/gdi32/enhmfdrv/init.c
+0
-1
freetype.c
dlls/gdi32/freetype.c
+0
-1
init.c
dlls/gdi32/mfdrv/init.c
+0
-1
path.c
dlls/gdi32/path.c
+0
-1
init.c
dlls/wineps.drv/init.c
+0
-1
init.c
dlls/winex11.drv/init.c
+0
-1
xrender.c
dlls/winex11.drv/xrender.c
+0
-1
gdi_driver.h
include/wine/gdi_driver.h
+1
-2
No files found.
dlls/gdi32/dibdrv/dc.c
View file @
fbbf3ba4
...
...
@@ -575,7 +575,6 @@ const struct gdi_dc_funcs dib_driver =
NULL
,
/* pCreateBitmap */
NULL
,
/* pCreateCompatibleDC */
dibdrv_CreateDC
,
/* pCreateDC */
NULL
,
/* pCreateDIBSection */
dibdrv_DeleteBitmap
,
/* pDeleteBitmap */
dibdrv_DeleteDC
,
/* pDeleteDC */
NULL
,
/* pDeleteObject */
...
...
dlls/gdi32/driver.c
View file @
fbbf3ba4
...
...
@@ -227,11 +227,6 @@ static BOOL nulldrv_CreateDC( PHYSDEV *dev, LPCWSTR driver, LPCWSTR device,
return
FALSE
;
}
static
HBITMAP
nulldrv_CreateDIBSection
(
PHYSDEV
dev
,
HBITMAP
bitmap
,
BITMAPINFO
*
info
,
UINT
usage
)
{
return
bitmap
;
}
static
BOOL
nulldrv_DeleteBitmap
(
HBITMAP
bitmap
)
{
return
TRUE
;
...
...
@@ -739,7 +734,6 @@ const struct gdi_dc_funcs null_driver =
nulldrv_CreateBitmap
,
/* pCreateBitmap */
nulldrv_CreateCompatibleDC
,
/* pCreateCompatibleDC */
nulldrv_CreateDC
,
/* pCreateDC */
nulldrv_CreateDIBSection
,
/* pCreateDIBSection */
nulldrv_DeleteBitmap
,
/* pDeleteBitmap */
nulldrv_DeleteDC
,
/* pDeleteDC */
nulldrv_DeleteObject
,
/* pDeleteObject */
...
...
dlls/gdi32/enhmfdrv/init.c
View file @
fbbf3ba4
...
...
@@ -51,7 +51,6 @@ static const struct gdi_dc_funcs EMFDRV_Funcs =
NULL
,
/* pCreateBitmap */
NULL
,
/* pCreateCompatibleDC */
NULL
,
/* pCreateDC */
NULL
,
/* pCreateDIBSection */
NULL
,
/* pDeleteBitmap */
EMFDRV_DeleteDC
,
/* pDeleteDC */
EMFDRV_DeleteObject
,
/* pDeleteObject */
...
...
dlls/gdi32/freetype.c
View file @
fbbf3ba4
...
...
@@ -7158,7 +7158,6 @@ static const struct gdi_dc_funcs freetype_funcs =
NULL
,
/* pCreateBitmap */
NULL
,
/* pCreateCompatibleDC */
freetype_CreateDC
,
/* pCreateDC */
NULL
,
/* pCreateDIBSection */
NULL
,
/* pDeleteBitmap */
freetype_DeleteDC
,
/* pDeleteDC */
NULL
,
/* pDeleteObject */
...
...
dlls/gdi32/mfdrv/init.c
View file @
fbbf3ba4
...
...
@@ -96,7 +96,6 @@ static const struct gdi_dc_funcs MFDRV_Funcs =
NULL
,
/* pCreateBitmap */
MFDRV_CreateCompatibleDC
,
/* pCreateCompatibleDC */
NULL
,
/* pCreateDC */
NULL
,
/* pCreateDIBSection */
NULL
,
/* pDeleteBitmap */
MFDRV_DeleteDC
,
/* pDeleteDC */
MFDRV_DeleteObject
,
/* pDeleteObject */
...
...
dlls/gdi32/path.c
View file @
fbbf3ba4
...
...
@@ -2250,7 +2250,6 @@ const struct gdi_dc_funcs path_driver =
NULL
,
/* pCreateBitmap */
NULL
,
/* pCreateCompatibleDC */
pathdrv_CreateDC
,
/* pCreateDC */
NULL
,
/* pCreateDIBSection */
NULL
,
/* pDeleteBitmap */
pathdrv_DeleteDC
,
/* pDeleteDC */
NULL
,
/* pDeleteObject */
...
...
dlls/wineps.drv/init.c
View file @
fbbf3ba4
...
...
@@ -834,7 +834,6 @@ static const struct gdi_dc_funcs psdrv_funcs =
NULL
,
/* pCreateBitmap */
PSDRV_CreateCompatibleDC
,
/* pCreateCompatibleDC */
PSDRV_CreateDC
,
/* pCreateDC */
NULL
,
/* pCreateDIBSection */
NULL
,
/* pDeleteBitmap */
PSDRV_DeleteDC
,
/* pDeleteDC */
NULL
,
/* pDeleteObject */
...
...
dlls/winex11.drv/init.c
View file @
fbbf3ba4
...
...
@@ -467,7 +467,6 @@ static const struct gdi_dc_funcs x11drv_funcs =
X11DRV_CreateBitmap
,
/* pCreateBitmap */
X11DRV_CreateCompatibleDC
,
/* pCreateCompatibleDC */
X11DRV_CreateDC
,
/* pCreateDC */
X11DRV_CreateDIBSection
,
/* pCreateDIBSection */
X11DRV_DeleteBitmap
,
/* pDeleteBitmap */
X11DRV_DeleteDC
,
/* pDeleteDC */
NULL
,
/* pDeleteObject */
...
...
dlls/winex11.drv/xrender.c
View file @
fbbf3ba4
...
...
@@ -2684,7 +2684,6 @@ static const struct gdi_dc_funcs xrender_funcs =
xrenderdrv_CreateBitmap
,
/* pCreateBitmap */
xrenderdrv_CreateCompatibleDC
,
/* pCreateCompatibleDC */
xrenderdrv_CreateDC
,
/* pCreateDC */
NULL
,
/* pCreateDIBSection */
xrenderdrv_DeleteBitmap
,
/* pDeleteBitmap */
xrenderdrv_DeleteDC
,
/* pDeleteDC */
NULL
,
/* pDeleteObject */
...
...
include/wine/gdi_driver.h
View file @
fbbf3ba4
...
...
@@ -77,7 +77,6 @@ struct gdi_dc_funcs
BOOL
(
*
pCreateBitmap
)(
PHYSDEV
,
HBITMAP
);
BOOL
(
*
pCreateCompatibleDC
)(
PHYSDEV
,
PHYSDEV
*
);
BOOL
(
*
pCreateDC
)(
PHYSDEV
*
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
const
DEVMODEW
*
);
HBITMAP
(
*
pCreateDIBSection
)(
PHYSDEV
,
HBITMAP
,
BITMAPINFO
*
,
UINT
);
BOOL
(
*
pDeleteBitmap
)(
HBITMAP
);
BOOL
(
*
pDeleteDC
)(
PHYSDEV
);
BOOL
(
*
pDeleteObject
)(
PHYSDEV
,
HGDIOBJ
);
...
...
@@ -212,7 +211,7 @@ struct gdi_dc_funcs
};
/* increment this when you change the DC function table */
#define WINE_GDI_DRIVER_VERSION 2
3
#define WINE_GDI_DRIVER_VERSION 2
4
static
inline
PHYSDEV
get_physdev_entry_point
(
PHYSDEV
dev
,
size_t
offset
)
{
...
...
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