Fix indentation all through the project
Fixes a “regression” from 04918f3b0b, but
also other missed pieces.
This commit is contained in:
committed by
Link Mauve
parent
48cd15ed44
commit
eff793ab46
@@ -848,11 +848,11 @@ struct weston_seat {
|
||||
};
|
||||
|
||||
enum {
|
||||
WESTON_COMPOSITOR_ACTIVE, /* normal rendering and events */
|
||||
WESTON_COMPOSITOR_IDLE, /* shell->unlock called on activity */
|
||||
WESTON_COMPOSITOR_OFFSCREEN, /* no rendering, no frame events */
|
||||
WESTON_COMPOSITOR_SLEEPING /* same as offscreen, but also set dpms
|
||||
* to off */
|
||||
WESTON_COMPOSITOR_ACTIVE, /* normal rendering and events */
|
||||
WESTON_COMPOSITOR_IDLE, /* shell->unlock called on activity */
|
||||
WESTON_COMPOSITOR_OFFSCREEN, /* no rendering, no frame events */
|
||||
WESTON_COMPOSITOR_SLEEPING /* same as offscreen, but also set dpms
|
||||
* to off */
|
||||
};
|
||||
|
||||
struct weston_layer_entry {
|
||||
@@ -1012,22 +1012,22 @@ enum weston_capability {
|
||||
* \endrststar
|
||||
*/
|
||||
struct weston_backend_config {
|
||||
/** Major version for the backend-specific config struct
|
||||
*
|
||||
* This version must match exactly what the backend expects, otherwise
|
||||
* the struct is incompatible.
|
||||
*/
|
||||
uint32_t struct_version;
|
||||
/** Major version for the backend-specific config struct
|
||||
*
|
||||
* This version must match exactly what the backend expects, otherwise
|
||||
* the struct is incompatible.
|
||||
*/
|
||||
uint32_t struct_version;
|
||||
|
||||
/** Minor version of the backend-specific config struct
|
||||
*
|
||||
* This must be set to sizeof(struct backend-specific config).
|
||||
* If the value here is smaller than what the backend expects, the
|
||||
* extra config members will assume their default values.
|
||||
*
|
||||
* A value greater than what the backend expects is incompatible.
|
||||
*/
|
||||
size_t struct_size;
|
||||
/** Minor version of the backend-specific config struct
|
||||
*
|
||||
* This must be set to sizeof(struct backend-specific config).
|
||||
* If the value here is smaller than what the backend expects, the
|
||||
* extra config members will assume their default values.
|
||||
*
|
||||
* A value greater than what the backend expects is incompatible.
|
||||
*/
|
||||
size_t struct_size;
|
||||
};
|
||||
|
||||
struct weston_backend;
|
||||
|
||||
@@ -47,7 +47,7 @@ struct weston_windowed_output_api {
|
||||
* Returns 0 on success, -1 on failure.
|
||||
*
|
||||
* This assigns a desired width and height to a windowed
|
||||
* output. The backend decides what should be done and applies
|
||||
* output. The backend decides what should be done and applies
|
||||
* the desired configuration. After using this function and
|
||||
* generic weston_output_set_*, a windowed
|
||||
* output should be in a state where weston_output_enable()
|
||||
|
||||
Reference in New Issue
Block a user