~ubuntu-branches/ubuntu/precise/xserver-xorg-video-tdfx-lts-quantal/precise-proposed

« back to all changes in this revision

Viewing changes to src/tdfx_dri.h

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2012-11-30 21:00:30 UTC
  • Revision ID: package-import@ubuntu.com-20121130210030-z6cpk5qrun266ihv
Tags: upstream-1.4.5
ImportĀ upstreamĀ versionĀ 1.4.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef _TDFX_DRI_
 
3
#define _TDFX_DRI_
 
4
 
 
5
#include "xf86drm.h"
 
6
 
 
7
typedef struct {
 
8
  drm_handle_t regs;
 
9
  drmSize regsSize;
 
10
  int deviceID;
 
11
  int width;
 
12
  int height;
 
13
  int mem;
 
14
  int cpp;
 
15
  int stride;
 
16
  int fifoOffset;
 
17
  int fifoSize;
 
18
  int fbOffset;
 
19
  int backOffset;
 
20
  int depthOffset;
 
21
  int textureOffset;
 
22
  int textureSize;
 
23
  unsigned int sarea_priv_offset;
 
24
} TDFXDRIRec, *TDFXDRIPtr;
 
25
 
 
26
#endif