blob: 73e458d4ba9c963055055dd49d4528f8f4c0104e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _INTEL_BE_API_H_
#define _INTEL_BE_API_H_
#include "pipe/p_compiler.h"
#include "state_tracker/drm_api.h"
#include "intel_be_device.h"
struct pipe_screen *intel_be_create_screen(int drmFD, int pciID);
struct pipe_context *intel_be_create_context(struct pipe_screen *screen);
#endif
|