content-type-v1

(index)

wp_content_type_manager_v1

surface content type manager

Interface
Version 1

This interface allows a client to describe the kind of content a surface will display, to allow the compositor to optimize its behavior for it.

Warning! The protocol described in this file is currently in the testing phase. Backward compatible changes may be added together with the corresponding interface version bump. Backward incompatible changes can only be done by creating a new major version of the extension.

wp_content_type_manager_v1.destroy

destroy the content type manager object

Destructor Request
Since Version 1

Destroy the content type manager. This doesn't destroy objects created with the manager.

wp_content_type_manager_v1.get_surface_content_type

create a new content type object

Request
Since Version 1

Create a new content type object associated with the given surface.

Creating a wp_content_type_v1 from a wl_surface which already has one attached is a client error: already_constructed.

ArgumentTypeDescription
idnew_id<wp_content_type_v1>

surfaceobject<wl_surface>

EntryValueSinceDescription
already_constructed01

wl_surface already has a content type object

wp_content_type_v1

content type object for a surface

Interface
Version 1

The content type object allows the compositor to optimize for the kind of content shown on the surface. A compositor may for example use it to set relevant drm properties like "content type".

The client may request to switch to another content type at any time. When the associated surface gets destroyed, this object becomes inert and the client should destroy it.

wp_content_type_v1.destroy

destroy the content type object

Destructor Request
Since Version 1

Switch back to not specifying the content type of this surface. This is equivalent to setting the content type to none, including double buffering semantics. See set_content_type for details.

wp_content_type_v1.set_content_type

specify the content type

Request
Since Version 1

Set the surface content type. This informs the compositor that the client believes it is displaying buffers matching this content type.

This is purely a hint for the compositor, which can be used to adjust its behavior or hardware settings to fit the presented content best.

The content type is double-buffered state, see wl_surface.commit for details.

ArgumentTypeDescription
content_typeuint<type>

the content type

wp_content_type_v1.type

possible content types

Enum
Since Version 1

These values describe the available content types for a surface.

EntryValueSinceDescription
none01

no content type applies

The content type none means that either the application has no data about the content type, or that the content doesn't fit into one of the other categories.

photo11

photo content type

The content type photo describes content derived from digital still pictures and may be presented with minimal processing.

video21

video content type

The content type video describes a video or animation and may be presented with more accurate timing to avoid stutter. Where scaling is needed, scaling methods more appropriate for video may be used.

game31

game content type

The content type game describes a running game. Its content may be presented with reduced latency.

Copyright