mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-21 17:38:08 +02:00
We only use the acquisition time for calculating latency for perfetto tracks later, and the acquisition time should ideally be the start of the perfetto flow. This has been more or less true with very small error margin for vk wsi, but the wayland EGL buffer handling is a lot more complicated. Moving the time check into the flow start will make re-using this code for EGL much simpler. Signed-off-by: Derek Foreman <derek.foreman@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32757>
119 lines
4.3 KiB
C
119 lines
4.3 KiB
C
/*
|
|
* Copyright © 2022 Red Hat, Inc.
|
|
*
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
* that the name of the copyright holders not be used in advertising or
|
|
* publicity pertaining to distribution of the software without specific,
|
|
* written prior permission. The copyright holders make no representations
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
* is" without express or implied warranty.
|
|
*
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
* OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#ifndef LOADER_WAYLAND_HELPER_HEADER_H
|
|
#define LOADER_WAYLAND_HELPER_HEADER_H
|
|
|
|
#include <util/timespec.h>
|
|
#include <wayland-client.h>
|
|
#include "presentation-time-client-protocol.h"
|
|
#include "util/list.h"
|
|
#include "util/perf/cpu_trace.h"
|
|
|
|
struct loader_wayland_presentation_feedback_data;
|
|
|
|
struct loader_wayland_buffer {
|
|
struct wl_buffer *buffer;
|
|
uint32_t id;
|
|
struct mesa_trace_flow flow;
|
|
char *name;
|
|
};
|
|
|
|
struct loader_wayland_surface_analytics {
|
|
char *latency_str;
|
|
uint64_t presenting;
|
|
uint64_t presentation_track_id;
|
|
};
|
|
|
|
struct loader_wayland_surface {
|
|
struct wl_surface *surface;
|
|
struct wl_surface *wrapper;
|
|
uint32_t id;
|
|
struct loader_wayland_surface_analytics analytics;
|
|
};
|
|
|
|
struct loader_wayland_presentation {
|
|
struct wp_presentation *presentation;
|
|
clockid_t clock_id;
|
|
struct loader_wayland_surface *wayland_surface;
|
|
void (*presented_callback)(void *data, uint64_t pres_time, uint32_t refresh);
|
|
void (*discarded_callback)(void *data);
|
|
void (*teardown_callback)(void *data);
|
|
struct list_head outstanding_list;
|
|
};
|
|
|
|
#ifndef HAVE_WL_DISPATCH_QUEUE_TIMEOUT
|
|
int
|
|
wl_display_dispatch_queue_timeout(struct wl_display *display,
|
|
struct wl_event_queue *queue,
|
|
const struct timespec *deadline);
|
|
#endif
|
|
|
|
#ifndef HAVE_WL_CREATE_QUEUE_WITH_NAME
|
|
struct wl_event_queue *
|
|
wl_display_create_queue_with_name(struct wl_display *display,
|
|
const char *name);
|
|
#endif
|
|
|
|
int
|
|
loader_wayland_dispatch(struct wl_display *display,
|
|
struct wl_event_queue *queue,
|
|
struct timespec *end_time);
|
|
|
|
void
|
|
loader_wayland_wrap_buffer(struct loader_wayland_buffer *lwb,
|
|
struct wl_buffer *wl_buffer);
|
|
|
|
void
|
|
loader_wayland_buffer_destroy(struct loader_wayland_buffer *lwb);
|
|
|
|
void
|
|
loader_wayland_buffer_set_flow(struct loader_wayland_buffer *lwb,
|
|
struct mesa_trace_flow *flow);
|
|
|
|
bool
|
|
loader_wayland_wrap_surface(struct loader_wayland_surface *lws,
|
|
struct wl_surface *wl_surface,
|
|
struct wl_event_queue *queue);
|
|
|
|
void
|
|
loader_wayland_surface_destroy(struct loader_wayland_surface *lws);
|
|
|
|
void
|
|
loader_wayland_wrap_presentation(struct loader_wayland_presentation *lwp,
|
|
struct wp_presentation *wp_presentation,
|
|
struct wl_event_queue *queue,
|
|
clockid_t presentation_clock_id,
|
|
struct loader_wayland_surface *lws,
|
|
void (*presented_callback)(void *data, uint64_t pres_time, uint32_t refresh),
|
|
void (*discarded_callback)(void *data),
|
|
void (*teardown_callback)(void *data));
|
|
|
|
void
|
|
loader_wayland_presentation_destroy(struct loader_wayland_presentation *lwp);
|
|
|
|
void
|
|
loader_wayland_presentation_feedback(struct loader_wayland_presentation *pres,
|
|
struct loader_wayland_buffer *lwb,
|
|
void *callback_data);
|
|
|
|
#endif
|