Blame va/wayland/va_wayland_emgd.h

Packit Service 9402ce
/*
Packit Service 9402ce
 * va_wayland_emgd.h - Wayland/EMGD helpers
Packit Service 9402ce
 *
Packit Service 9402ce
 * Copyright (c) 2012 Intel Corporation. All Rights Reserved.
Packit Service 9402ce
 *
Packit Service 9402ce
 * Permission is hereby granted, free of charge, to any person obtaining a
Packit Service 9402ce
 * copy of this software and associated documentation files (the
Packit Service 9402ce
 * "Software"), to deal in the Software without restriction, including
Packit Service 9402ce
 * without limitation the rights to use, copy, modify, merge, publish,
Packit Service 9402ce
 * distribute, sub license, and/or sell copies of the Software, and to
Packit Service 9402ce
 * permit persons to whom the Software is furnished to do so, subject to
Packit Service 9402ce
 * the following conditions:
Packit Service 9402ce
 * 
Packit Service 9402ce
 * The above copyright notice and this permission notice (including the
Packit Service 9402ce
 * next paragraph) shall be included in all copies or substantial portions
Packit Service 9402ce
 * of the Software.
Packit Service 9402ce
 * 
Packit Service 9402ce
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
Packit Service 9402ce
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Packit Service 9402ce
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
Packit Service 9402ce
 * IN NO EVENT SHALL INTEL AND/OR ITS SUPPLIERS BE LIABLE FOR
Packit Service 9402ce
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
Packit Service 9402ce
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
Packit Service 9402ce
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit Service 9402ce
 */
Packit Service 9402ce
Packit Service 9402ce
#ifndef VA_WAYLAND_EMGD_H
Packit Service 9402ce
#define VA_WAYLAND_EMGD_H
Packit Service 9402ce
Packit Service 9402ce
#include <stdbool.h>
Packit Service 9402ce
#include "va_wayland.h"
Packit Service 9402ce
#include "va_backend.h"
Packit Service 9402ce
#include "va_backend_wayland.h"
Packit Service 9402ce
Packit Service 9402ce
/**
Packit Service 9402ce
 * \brief Initializes Wayland/EMGD layer.
Packit Service 9402ce
 *
Packit Service 9402ce
 * This is an internal function used to initialize the VA/EMGD subsystem
Packit Service 9402ce
 * if the application is running on an EMGD-based server.
Packit Service 9402ce
 *
Packit Service 9402ce
 * @param[in]   pDisplayContext the VA display context
Packit Service 9402ce
 * @return true if successful
Packit Service 9402ce
 */
Packit Service 9402ce
DLL_HIDDEN
Packit Service 9402ce
bool
Packit Service 9402ce
va_wayland_emgd_create(VADisplayContextP pDisplayContext);
Packit Service 9402ce
Packit Service 9402ce
DLL_HIDDEN
Packit Service 9402ce
void
Packit Service 9402ce
va_wayland_emgd_destroy(VADisplayContextP pDisplayContext);
Packit Service 9402ce
Packit Service 9402ce
#endif /* VA_WAYLAND_EMGD_H */