1 /* 2 * Copyright (c) 2010-2024 Broadcom. All Rights Reserved. 3 * The term “Broadcom” refers to Broadcom Inc. 4 * and/or its subsidiaries. 5 * SPDX-License-Identifier: MIT 6 */ 7 8 /** 9 * @file 10 * VMware SVGA DRM winsys public interface. Used by targets to create a stack. 11 * 12 * @author Jakob Bornecrantz Fonseca <[email protected]> 13 */ 14 15 #ifndef SVGA_DRM_PUBLIC_H_ 16 #define SVGA_DRM_PUBLIC_H_ 17 18 struct svga_winsys_screen; 19 20 struct svga_winsys_screen * 21 svga_drm_winsys_screen_create(int fd); 22 23 #endif /* SVGA_PUBLIC_H_ */ 24