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
d59714b7
Commit
d59714b7
authored
Jun 09, 2006
by
Jason Green
Committed by
Alexandre Julliard
Jun 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Prototype the GLSL functions for use with pixel and vertex shaders.
parent
806aaa12
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+19
-0
No files found.
dlls/wined3d/wined3d_private.h
View file @
d59714b7
...
@@ -1317,6 +1317,25 @@ extern const SHADER_OPCODE* shader_get_opcode(
...
@@ -1317,6 +1317,25 @@ extern const SHADER_OPCODE* shader_get_opcode(
/* ARB shader program Prototypes */
/* ARB shader program Prototypes */
extern
void
shader_hw_def
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_hw_def
(
SHADER_OPCODE_ARG
*
arg
);
/** The following translate DirectX pixel/vertex shader opcodes to GLSL lines */
extern
void
shader_glsl_map2gl
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_arith
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_mov
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_mad
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_mnxn
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_lrp
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_dot
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_rcp
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_cnd
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_compare
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_def
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
shader_glsl_cmp
(
SHADER_OPCODE_ARG
*
arg
);
/** GLSL Pixel Shader Prototypes */
extern
void
pshader_glsl_tex
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
pshader_glsl_texcoord
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
pshader_glsl_texm3x2pad
(
SHADER_OPCODE_ARG
*
arg
);
extern
void
pshader_glsl_texm3x2tex
(
SHADER_OPCODE_ARG
*
arg
);
/*****************************************************************************
/*****************************************************************************
* IDirect3DBaseShader implementation structure
* IDirect3DBaseShader implementation structure
*/
*/
...
...
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