gallium: tweak comments, minor var renaming
This commit is contained in:
@@ -58,25 +58,33 @@ struct pipe_screen {
|
|||||||
void (*destroy)( struct pipe_screen * );
|
void (*destroy)( struct pipe_screen * );
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Capability queries
|
|
||||||
*/
|
|
||||||
const char *(*get_name)( struct pipe_screen * );
|
const char *(*get_name)( struct pipe_screen * );
|
||||||
|
|
||||||
const char *(*get_vendor)( struct pipe_screen * );
|
const char *(*get_vendor)( struct pipe_screen * );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query an integer-valued capability/parameter/limit
|
||||||
|
* \param param one of PIPE_CAP_x
|
||||||
|
*/
|
||||||
int (*get_param)( struct pipe_screen *, int param );
|
int (*get_param)( struct pipe_screen *, int param );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query a float-valued capability/parameter/limit
|
||||||
|
* \param param one of PIPE_CAP_x
|
||||||
|
*/
|
||||||
float (*get_paramf)( struct pipe_screen *, int param );
|
float (*get_paramf)( struct pipe_screen *, int param );
|
||||||
|
|
||||||
/**< type is one of PIPE_TEXTURE, PIPE_SURFACE */
|
/**
|
||||||
|
* Check if the given pipe_format is supported as a texture or
|
||||||
|
* drawing surface.
|
||||||
|
* \param type one of PIPE_TEXTURE, PIPE_SURFACE
|
||||||
|
*/
|
||||||
boolean (*is_format_supported)( struct pipe_screen *,
|
boolean (*is_format_supported)( struct pipe_screen *,
|
||||||
enum pipe_format format,
|
enum pipe_format format,
|
||||||
uint type );
|
uint type );
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Create a new texture object, using the given template info.
|
||||||
* Texture functions
|
|
||||||
*/
|
*/
|
||||||
struct pipe_texture * (*texture_create)(struct pipe_screen *,
|
struct pipe_texture * (*texture_create)(struct pipe_screen *,
|
||||||
const struct pipe_texture *templat);
|
const struct pipe_texture *templat);
|
||||||
|
Reference in New Issue
Block a user