'i915_fpc_translate.c',
'i915_prim_emit.c',
'i915_prim_vbuf.c',
+ 'i915_screen.c',
'i915_state.c',
'i915_state_derived.c',
'i915_state_dynamic.c',
#include "pipe/p_winsys.h"
#include "i915_reg.h"
+#include "i915_context.h"
#include "i915_screen.h"
#include "i915_texture.h"
#include "pipe/p_screen.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
/**
* Subclass of pipe_screen
*/
i915_create_screen(struct pipe_winsys *winsys, uint pci_id);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* I915_SCREEN_H */
#include "pipe/p_defines.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
/* Pipe drivers are (meant to be!) independent of both GL and the
* window system. The window system provides a buffer manager and a
* set of additional hooks for things like command buffer submission,
struct pipe_winsys *,
struct i915_winsys * );
+#ifdef __cplusplus
+}
+#endif
+
#endif