~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/state_trackers/egl/common/native_buffer.h

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include "pipe/p_state.h"
34
34
 
35
35
struct native_display;
 
36
struct ANativeWindowBuffer;
36
37
 
37
38
enum native_buffer_type {
38
39
   NATIVE_BUFFER_DRM,
 
40
   NATIVE_BUFFER_ANDROID,
39
41
 
40
42
   NUM_NATIVE_BUFFERS
41
43
};
50
52
         unsigned handle; /**< the handle of the GEM object */
51
53
         unsigned stride;
52
54
      } drm;
 
55
 
 
56
      struct ANativeWindowBuffer *android; /**< opaque native buffer */
53
57
   } u;
54
58
};
55
59