summaryrefslogtreecommitdiff
path: root/src/gallium/include/state_tracker
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-02-01 14:02:35 -0700
committerBrian Paul <brianp@vmware.com>2012-02-01 14:02:35 -0700
commit3279561e9ab3a6f25215b8e857493d2b9ae6bdd9 (patch)
treef57b37548701cb1003c84855c029d3b40a5cd519 /src/gallium/include/state_tracker
parente53557996ece5ab877652b8f83ae40bb4c483453 (diff)
st-api: fix typos, whitespace, line wrapping
Diffstat (limited to 'src/gallium/include/state_tracker')
-rw-r--r--src/gallium/include/state_tracker/st_api.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/include/state_tracker/st_api.h b/src/gallium/include/state_tracker/st_api.h
index da49dc80fca..3af1dfc6d4d 100644
--- a/src/gallium/include/state_tracker/st_api.h
+++ b/src/gallium/include/state_tracker/st_api.h
@@ -176,7 +176,7 @@ struct pipe_fence_handle;
*/
struct st_context_resource
{
- /* these fields are filled by the caller */
+ /* these fields are filled in by the caller */
enum st_context_resource_type type;
void *resource;
@@ -251,17 +251,17 @@ struct st_context_attribs
* The framebuffer is implemented by the state tracker manager and
* used by the state trackers.
*
- * Instead of the winsys pokeing into the API context to figure
+ * Instead of the winsys poking into the API context to figure
* out what buffers that might be needed in the future by the API
* context, it calls into the framebuffer to get the textures.
*
* This structure along with the notify_invalid_framebuffer
* allows framebuffers to be shared between different threads
* but at the same make the API context free from thread
- * syncronisation primitves, with the exception of a small
+ * synchronization primitves, with the exception of a small
* atomic flag used for notification of framebuffer dirty status.
*
- * The thread syncronisation is put inside the framebuffer
+ * The thread synchronization is put inside the framebuffer
* and only called once the framebuffer has become dirty.
*/
struct st_framebuffer_iface
@@ -269,7 +269,6 @@ struct st_framebuffer_iface
/**
* Atomic stamp which changes when framebuffers need to be updated.
*/
-
int32_t stamp;
/**
@@ -345,7 +344,8 @@ struct st_context_iface
*
* This function is optional.
*/
- boolean (*teximage)(struct st_context_iface *stctxi, enum st_texture_type target,
+ boolean (*teximage)(struct st_context_iface *stctxi,
+ enum st_texture_type target,
int level, enum pipe_format internal_format,
struct pipe_resource *tex, boolean mipmap);