mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-22 08:30:34 +01:00
gallium: fix some comments in p_state.h
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
82ddd1129e
commit
f1334f232f
1 changed files with 3 additions and 3 deletions
|
|
@ -329,7 +329,7 @@ struct pipe_surface
|
|||
{
|
||||
struct pipe_reference reference;
|
||||
struct pipe_resource *texture; /**< resource into which this is a view */
|
||||
struct pipe_context *context; /**< context this view belongs to */
|
||||
struct pipe_context *context; /**< context this surface belongs to */
|
||||
enum pipe_format format;
|
||||
|
||||
/* XXX width/height should be removed */
|
||||
|
|
@ -463,8 +463,8 @@ struct pipe_vertex_buffer
|
|||
struct pipe_stream_output_target
|
||||
{
|
||||
struct pipe_reference reference;
|
||||
struct pipe_resource *buffer; /**< buffer into which this is a target view */
|
||||
struct pipe_context *context; /**< context this view belongs to */
|
||||
struct pipe_resource *buffer; /**< the output buffer */
|
||||
struct pipe_context *context; /**< context this SO target belongs to */
|
||||
|
||||
unsigned buffer_offset; /**< offset where data should be written, in bytes */
|
||||
unsigned buffer_size; /**< how much data is allowed to be written */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue