wayland::server::shm_t(3) Wayland++ wayland::server::shm_t(3)

wayland::server::shm_t - shared memory support

#include <wayland-server-protocol.hpp>

Inherits wayland::server::resource_t.


std::function< void(shm_pool_t, int, int32_t)> & on_create_pool ()
create a shm pool void format (shm_format const &format, bool post=true)
pixel format description void post_invalid_format (std::string const &msg)
Post error: buffer format is not known. void post_invalid_stride (std::string const &msg)
Post error: invalid size or stride during pool or buffer creation. void post_invalid_fd (std::string const &msg)
Post error: mmapping the file descriptor failed. bool proxy_has_object () const
Check whether this wrapper actually wraps an object. void post_no_memory () const
uint32_t get_id () const
client_t get_client () const
unsigned int get_version () const
std::string get_class ()


static constexpr std::uint32_t format_since_version = 1
Minimum protocol version required for the format function.

shared memory support

A singleton global object that provides support for shared memory.

Clients can create wl_shm_pool objects using the create_pool request.

On binding the wl_shm object one or more format events are emitted to inform clients about the valid pixel formats that can be used for buffers.

Definition at line 424 of file wayland-server-protocol.hpp.

pixel format description

Parameters

format buffer pixel format

Informs the client about a valid pixel format that can be used for buffers. Known formats include argb8888 and xrgb8888.

Definition at line 1753 of file wayland-server-protocol.cpp.

Retrieve the interface name (class) of a resource object.

Returns

Interface name of the resource object.

Get the associated client

Returns

the client that owns the resource.

Get the internal ID of the resource

Returns

the internal ID of the resource

Get interface version

Returns

Interface version this resource has been constructed with.

create a shm pool

Parameters

id pool to create
fd file descriptor for the pool
size pool size, in bytes

Create a new wl_shm_pool object.

The pool can be used to create shared memory based buffer objects. The server will mmap size bytes of the passed file descriptor, to use as backing memory for the pool.

Definition at line 1747 of file wayland-server-protocol.cpp.

Post error: mmapping the file descriptor failed.

Definition at line 1768 of file wayland-server-protocol.cpp.

Post error: buffer format is not known.

Definition at line 1758 of file wayland-server-protocol.cpp.

Post error: invalid size or stride during pool or buffer creation.

Definition at line 1763 of file wayland-server-protocol.cpp.

Post 'not enough memory' error to the client

If the compositor has not enough memory to fulfill a certail request of the client, this function can be called to notify the client of this circumstance.

Check whether this wrapper actually wraps an object.

Returns

true if there is an underlying object, false if this wrapper is empty

Minimum protocol version required for the format function.

Definition at line 476 of file wayland-server-protocol.hpp.

Generated automatically by Doxygen for Wayland++ from the source code.

Mon Apr 22 2024 09:52:15 Version 1.0.0