summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2010-02-01 21:42:48 +0800
committerChia-I Wu <olvaffe@gmail.com>2010-02-01 22:15:14 +0800
commitdf93cf50741a484e2761370e57a1bbfcf6b73ad2 (patch)
treef26470cbed30d707ee60a8bc4e9e70329f9b506e
parentd5f016da4ef56592ad3ab9af64a72f94b6012f97 (diff)
Replace tabs by spaces.
-rw-r--r--st_api.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/st_api.h b/st_api.h
index 496c5c3..da89c87 100644
--- a/st_api.h
+++ b/st_api.h
@@ -247,9 +247,9 @@ struct st_context
* unlocked.
*/
void *(*lock_resource)(struct st_context *stctx,
- enum st_context_resource_type type, void *res);
+ enum st_context_resource_type type, void *res);
void (*unlock_resource)(struct st_context *stctx,
- enum st_context_resource_type type, void *res);
+ enum st_context_resource_type type, void *res);
/**
* Invalidate the current textures that was taken from a framebuffer.
@@ -274,7 +274,7 @@ struct st_context
* Flush all drawing from context to the pipe also flushes the pipe.
*/
void (*flush)(struct st_context *stctx, unsigned flags,
- struct pipe_fence_handle **fence);
+ struct pipe_fence_handle **fence);
/**
* Replace the texture image of a texture object at the specified level.
@@ -289,7 +289,7 @@ struct st_context
* Used to implement glXCopyContext.
*/
void (*copy)(struct st_context *stctx, struct st_context *stsrc,
- unsigned mask);
+ unsigned mask);
};
@@ -310,9 +310,9 @@ struct st_manager
* unlocked.
*/
void *(*lock_resource)(struct st_manager *smapi, struct st_context *stctx,
- enum st_manager_resource_type type, void *res);
+ enum st_manager_resource_type type, void *res);
void (*unlock_resource)(struct st_manager *smapi, struct st_context *stctx,
- enum st_manager_resource_type type, void *res);
+ enum st_manager_resource_type type, void *res);
};
/**