1 /* 2 * Copyright 2010 Red Hat Inc. 3 * SPDX-License-Identifier: MIT 4 */ 5 #pragma once 6 7 #ifdef __cplusplus 8 extern "C" { 9 #endif 10 11 struct pipe_screen; 12 struct renderonly; 13 14 struct pipe_screen *agx_screen_create(int fd, struct renderonly *ro, 15 const struct pipe_screen_config *config); 16 17 #ifdef __cplusplus 18 } 19 #endif 20