summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_screen.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-04-09 21:26:15 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-04-09 21:26:15 +0100
commit7ea265888f19bcbc1771f6c671ce08855b80bf0a (patch)
tree0acf6e4e8874d65cd589f5f209526a4ec86d9ec8 /src/gallium/include/pipe/p_screen.h
parentfa2b9e43067298bc67f7787b6ab886eb7992abaf (diff)
gallium: Use "flags" consistently.
Diffstat (limited to 'src/gallium/include/pipe/p_screen.h')
-rw-r--r--src/gallium/include/pipe/p_screen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h
index ceac755e71..5046febcf6 100644
--- a/src/gallium/include/pipe/p_screen.h
+++ b/src/gallium/include/pipe/p_screen.h
@@ -264,7 +264,7 @@ struct pipe_screen {
*/
int (*fence_signalled)( struct pipe_screen *screen,
struct pipe_fence_handle *fence,
- unsigned flag );
+ unsigned flags );
/**
* Wait for the fence to finish.
@@ -273,7 +273,7 @@ struct pipe_screen {
*/
int (*fence_finish)( struct pipe_screen *screen,
struct pipe_fence_handle *fence,
- unsigned flag );
+ unsigned flags );
};