projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19b26cb
)
gallium: use better param name
author
Brian Paul
<brianp@vmware.com>
Thu, 22 Apr 2010 20:39:03 +0000
(14:39 -0600)
committer
Brian Paul
<brianp@vmware.com>
Thu, 22 Apr 2010 20:39:12 +0000
(14:39 -0600)
src/gallium/include/pipe/p_screen.h
patch
|
blob
|
history
diff --git
a/src/gallium/include/pipe/p_screen.h
b/src/gallium/include/pipe/p_screen.h
index 06ab4a848a40572157d953db09d9337f14300fdf..beff1ae8a925418e6b1ac82b53c5645062666e3c 100644
(file)
--- a/
src/gallium/include/pipe/p_screen.h
+++ b/
src/gallium/include/pipe/p_screen.h
@@
-93,13
+93,13
@@
struct pipe_screen {
/**
* Check if the given pipe_format is supported as a texture or
* drawing surface.
- * \param
tex_usage
bitmask of PIPE_BIND_*
+ * \param
bindings
bitmask of PIPE_BIND_*
* \param geom_flags bitmask of PIPE_TEXTURE_GEOM_*
*/
boolean (*is_format_supported)( struct pipe_screen *,
enum pipe_format format,
enum pipe_texture_target target,
- unsigned
tex_usage
,
+ unsigned
bindings
,
unsigned geom_flags );
/**