~ubuntu-branches/ubuntu/karmic/xserver-xorg-video-nouveau/karmic

« back to all changes in this revision

Viewing changes to src/nv_dripriv.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2008-07-06 20:26:53 UTC
  • Revision ID: james.westby@ubuntu.com-20080706202653-e99oiii765j3a0qn
Tags: upstream-0.0.10~git+20080706+b1f3169
ImportĀ upstreamĀ versionĀ 0.0.10~git+20080706+b1f3169

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef NV_DRIPRIV_H_
 
2
#define NV_DRIPRIV_H_
 
3
 
 
4
#include "GL/glxint.h"
 
5
#include "xf86drm.h"
 
6
 
 
7
extern void GlxSetVisualConfigs(int nconfigs, __GLXvisualConfig *configs,
 
8
                                void **configprivs);
 
9
 
 
10
typedef struct {
 
11
    /* Nothing here yet */
 
12
    int dummy;
 
13
} NVConfigPrivRec, *NVConfigPrivPtr;
 
14
 
 
15
typedef struct {
 
16
    /* Nothing here yet */
 
17
    int dummy;
 
18
} NVDRIContextRec, *NVDRIContextPtr;
 
19
 
 
20
#endif
 
21