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 public interface. Used by targets to create a stack. 11 * 12 * @author Jakob Bornecrantz Fonseca <[email protected]> 13 */ 14 15 #ifndef SVGA_PUBLIC_H_ 16 #define SVGA_PUBLIC_H_ 17 18 struct pipe_screen; 19 struct svga_winsys_screen; 20 21 struct pipe_screen * 22 svga_screen_create(struct svga_winsys_screen *sws); 23 24 #endif /* SVGA_PUBLIC_H_ */ 25