linux/drivers/gpu/drm/vmwgfx/device_include/svga_overlay.h

/* SPDX-License-Identifier: GPL-2.0 OR MIT */
/*
 * Copyright 2007-2021 VMware, Inc.
 *
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use, copy,
 * modify, merge, publish, distribute, sublicense, and/or sell copies
 * of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */

/*
 * svga_overlay.h --
 *
 *    Definitions for video-overlay support.
 */



#ifndef _SVGA_OVERLAY_H_
#define _SVGA_OVERLAY_H_

#include "svga_reg.h"

#if defined __cplusplus
extern "C" {
#endif

#define VMWARE_FOURCC_YV12
#define VMWARE_FOURCC_YUY2
#define VMWARE_FOURCC_UYVY

SVGAOverlayFormat;

#define SVGA_VIDEO_COLORKEY_MASK

#define SVGA_ESCAPE_VMWARE_VIDEO

#define SVGA_ESCAPE_VMWARE_VIDEO_SET_REGS

#define SVGA_ESCAPE_VMWARE_VIDEO_FLUSH

SVGAEscapeVideoSetRegs;

SVGAEscapeVideoFlush;

#pragma pack(push, 1)
SVGAFifoEscapeCmdVideoBase;
#pragma pack(pop)

#pragma pack(push, 1)
SVGAFifoEscapeCmdVideoFlush;
#pragma pack(pop)

#pragma pack(push, 1)
SVGAFifoEscapeCmdVideoSetRegs;
#pragma pack(pop)

#pragma pack(push, 1)
SVGAFifoEscapeCmdVideoSetAllRegs;
#pragma pack(pop)

#if defined __cplusplus
}
#endif

#endif