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
9713f651
Commit
9713f651
authored
Aug 02, 2004
by
Christian Costa
Committed by
Alexandre Julliard
Aug 02, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved libtxc_dxt definitions into ddraw headers.
parent
5ffe1775
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
d3d_private.h
dlls/ddraw/d3d_private.h
+0
-8
ddraw_private.h
dlls/ddraw/ddraw_private.h
+8
-0
No files found.
dlls/ddraw/d3d_private.h
View file @
9713f651
...
...
@@ -276,12 +276,4 @@ extern void multiply_matrix(LPD3DMATRIX,LPD3DMATRIX,LPD3DMATRIX);
extern
const
float
id_mat
[
16
];
typedef
void
(
*
FUNC_FETCH_2D_TEXEL_RGBA_DXT1
)(
int
srcRowStride
,
const
BYTE
*
pixdata
,
int
i
,
int
j
,
void
*
texel
);
typedef
void
(
*
FUNC_FETCH_2D_TEXEL_RGBA_DXT3
)(
int
srcRowStride
,
const
BYTE
*
pixdata
,
int
i
,
int
j
,
void
*
texel
);
typedef
void
(
*
FUNC_FETCH_2D_TEXEL_RGBA_DXT5
)(
int
srcRowStride
,
const
BYTE
*
pixdata
,
int
i
,
int
j
,
void
*
texel
);
extern
FUNC_FETCH_2D_TEXEL_RGBA_DXT1
fetch_2d_texel_rgba_dxt1
;
extern
FUNC_FETCH_2D_TEXEL_RGBA_DXT3
fetch_2d_texel_rgba_dxt3
;
extern
FUNC_FETCH_2D_TEXEL_RGBA_DXT5
fetch_2d_texel_rgba_dxt5
;
#endif
/* __GRAPHICS_WINE_D3D_PRIVATE_H */
dlls/ddraw/ddraw_private.h
View file @
9713f651
...
...
@@ -381,6 +381,14 @@ extern int _common_depth_to_pixelformat(DWORD depth,LPDIRECTDRAW ddraw);
extern
BOOL
opengl_initialized
;
extern
BOOL
s3tc_initialized
;
typedef
void
(
*
FUNC_FETCH_2D_TEXEL_RGBA_DXT1
)(
int
srcRowStride
,
const
BYTE
*
pixdata
,
int
i
,
int
j
,
void
*
texel
);
typedef
void
(
*
FUNC_FETCH_2D_TEXEL_RGBA_DXT3
)(
int
srcRowStride
,
const
BYTE
*
pixdata
,
int
i
,
int
j
,
void
*
texel
);
typedef
void
(
*
FUNC_FETCH_2D_TEXEL_RGBA_DXT5
)(
int
srcRowStride
,
const
BYTE
*
pixdata
,
int
i
,
int
j
,
void
*
texel
);
extern
FUNC_FETCH_2D_TEXEL_RGBA_DXT1
fetch_2d_texel_rgba_dxt1
;
extern
FUNC_FETCH_2D_TEXEL_RGBA_DXT3
fetch_2d_texel_rgba_dxt3
;
extern
FUNC_FETCH_2D_TEXEL_RGBA_DXT5
fetch_2d_texel_rgba_dxt5
;
/******************************************************************************
* Structure conversion (for thunks)
*/
...
...
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