Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
540054eb
Commit
540054eb
authored
11 years ago
by
Henri Verbeet
Committed by
Alexandre Julliard
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
d3dcompiler: Get rid of the BWRITERSAMPLER_TEXTURE_TYPE typedef.
parent
052a8630
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/d3dcompiler_43/asmshader.y
+1
-1
1 addition, 1 deletion
dlls/d3dcompiler_43/asmshader.y
dlls/d3dcompiler_43/d3dcompiler_private.h
+3
-2
3 additions, 2 deletions
dlls/d3dcompiler_43/d3dcompiler_private.h
with
4 additions
and
3 deletions
dlls/d3dcompiler_43/asmshader.y
+
1
−
1
View file @
540054eb
...
...
@@ -97,7 +97,7 @@ int asmshader_lex(void);
DWORD dclusage;
unsigned int regnum;
} declaration;
BWRITERSAMPLER_TEXTURE_TYPE
samplertype;
enum bwritersampler_texture_type
samplertype;
struct rel_reg rel_reg;
struct src_regs sregs;
}
...
...
This diff is collapsed.
Click to expand it.
dlls/d3dcompiler_43/d3dcompiler_private.h
+
3
−
2
View file @
540054eb
...
...
@@ -502,13 +502,14 @@ enum bwritershader_param_dstmod_type
BWRITERSPDM_MSAMPCENTROID
=
4
,
};
typedef
enum
_BWRITERSAMPLER_TEXTURE_TYPE
{
enum
bwritersampler_texture_type
{
BWRITERSTT_UNKNOWN
=
0
,
BWRITERSTT_1D
=
1
,
BWRITERSTT_2D
=
2
,
BWRITERSTT_CUBE
=
3
,
BWRITERSTT_VOLUME
=
4
,
}
BWRITERSAMPLER_TEXTURE_TYPE
;
};
#define BWRITERSI_TEXLD_PROJECT 1
#define BWRITERSI_TEXLD_BIAS 2
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment