wlr-screencopy-unstable-v1

screen content capturing on client buffers

(index)

This protocol allows clients to ask the compositor to copy part of the screen content to a client buffer.

Warning! The protocol described in this file is experimental and backward incompatible changes may be made. Backward compatible changes may be added together with the corresponding interface version bump. Backward incompatible changes are done by bumping the version number in the protocol and interface names and resetting the interface version. Once the protocol is to be declared stable, the 'z' prefix and the version number in the protocol and interface names are removed and the interface version number is reset.

Note! This protocol is deprecated and not intended for production use. The ext-image-copy-capture-v1 protocol should be used instead.

zwlr_screencopy_manager_v1

manager to inform clients and begin capturing

Interface
Version 3

This object is a manager which offers requests to start capturing from a source.

zwlr_screencopy_manager_v1.capture_output

capture an output

Request
Since Version 1

Capture the next frame of an entire output.

ArgumentTypeDescription
framenew_id<zwlr_screencopy_frame_v1>

overlay_cursorint

composite cursor onto the frame

outputobject<wl_output>

zwlr_screencopy_manager_v1.capture_output_region

capture an output's region

Request
Since Version 1

Capture the next frame of an output's region.

The region is given in output logical coordinates, see xdg_output.logical_size. The region will be clipped to the output's extents.

ArgumentTypeDescription
framenew_id<zwlr_screencopy_frame_v1>

overlay_cursorint

composite cursor onto the frame

outputobject<wl_output>

xint

yint

widthint

heightint

zwlr_screencopy_manager_v1.destroy

destroy the manager

Destructor Request
Since Version 1

All objects created by the manager will still remain valid, until their appropriate destroy request has been called.

zwlr_screencopy_frame_v1

a frame ready for copy

Interface
Version 3

This object represents a single frame.

When created, a series of buffer events will be sent, each representing a supported buffer type. The "buffer_done" event is sent afterwards to indicate that all supported buffer types have been enumerated. The client will then be able to send a "copy" request. If the capture is successful, the compositor will send a "flags" event followed by a "ready" event.

For objects version 2 or lower, wl_shm buffers are always supported, ie. the "buffer" event is guaranteed to be sent.

If the capture failed, the "failed" event is sent. This can happen anytime before the "ready" event.

Once either a "ready" or a "failed" event is received, the client should destroy the frame.

zwlr_screencopy_frame_v1.copy

copy the frame

Request
Since Version 1

Copy the frame to the supplied buffer. The buffer must have the correct size, see zwlr_screencopy_frame_v1.buffer and zwlr_screencopy_frame_v1.linux_dmabuf. The buffer needs to have a supported format.

If the frame is successfully copied, "flags" and "ready" events are sent. Otherwise, a "failed" event is sent.

ArgumentTypeDescription
bufferobject<wl_buffer>

zwlr_screencopy_frame_v1.destroy

delete this object, used or not

Destructor Request
Since Version 1

Destroys the frame. This request can be sent at any time by the client.

zwlr_screencopy_frame_v1.copy_with_damage

copy the frame when it's damaged

Request
Since Version 2

Same as copy, except it waits until there is damage to copy.

ArgumentTypeDescription
bufferobject<wl_buffer>

zwlr_screencopy_frame_v1.buffer

wl_shm buffer information

Event
Since Version 1

Provides information about wl_shm buffer parameters that need to be used for this frame. This event is sent once after the frame is created if wl_shm buffers are supported.

ArgumentTypeDescription
formatuint<wl_shm.format>

buffer format

widthuint

buffer width

heightuint

buffer height

strideuint

buffer stride

zwlr_screencopy_frame_v1.flags

frame flags

Event
Since Version 1

Provides flags about the frame. This event is sent once before the "ready" event.

ArgumentTypeDescription
flagsuint<flags>

frame flags

zwlr_screencopy_frame_v1.ready

indicates frame is available for reading

Event
Since Version 1

Called as soon as the frame is copied, indicating it is available for reading. This event includes the time at which the presentation took place.

The timestamp is expressed as tv_sec_hi, tv_sec_lo, tv_nsec triples, each component being an unsigned 32-bit value. Whole seconds are in tv_sec which is a 64-bit value combined from tv_sec_hi and tv_sec_lo, and the additional fractional part in tv_nsec as nanoseconds. Hence, for valid timestamps tv_nsec must be in [0, 999999999]. The seconds part may have an arbitrary offset at start.

After receiving this event, the client should destroy the object.

ArgumentTypeDescription
tv_sec_hiuint

high 32 bits of the seconds part of the timestamp

tv_sec_louint

low 32 bits of the seconds part of the timestamp

tv_nsecuint

nanoseconds part of the timestamp

zwlr_screencopy_frame_v1.failed

frame copy failed

Event
Since Version 1

This event indicates that the attempted frame copy has failed.

After receiving this event, the client should destroy the object.

zwlr_screencopy_frame_v1.damage

carries the coordinates of the damaged region

Event
Since Version 2

This event is sent right before the ready event when copy_with_damage is requested. It may be generated multiple times for each copy_with_damage request.

The arguments describe a box around an area that has changed since the last copy request that was derived from the current screencopy manager instance.

The union of all regions received between the call to copy_with_damage and a ready event is the total damage since the prior ready event.

ArgumentTypeDescription
xuint

damaged x coordinates

yuint

damaged y coordinates

widthuint

current width

heightuint

current height

zwlr_screencopy_frame_v1.linux_dmabuf

linux-dmabuf buffer information

Event
Since Version 3

Provides information about linux-dmabuf buffer parameters that need to be used for this frame. This event is sent once after the frame is created if linux-dmabuf buffers are supported.

ArgumentTypeDescription
formatuint

fourcc pixel format

widthuint

buffer width

heightuint

buffer height

zwlr_screencopy_frame_v1.buffer_done

all buffer types reported

Event
Since Version 3

This event is sent once after all buffer events have been sent.

The client should proceed to create a buffer of one of the supported types, and send a "copy" request.

EntryValueSinceDescription
already_used01

the object has already been used to copy a wl_buffer

invalid_buffer11

buffer attributes are invalid

zwlr_screencopy_frame_v1.flags

Bitfield Enum
Since Version 1
EntryValueSinceDescription
y_invert11

contents are y-inverted

Copyright