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

« back to all changes in this revision

Viewing changes to src/gallium/state_trackers/d3d1x/gd3d1x/d3d1x_private.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:
43
43
 
44
44
extern "C"
45
45
{
46
 
#include <pipe/p_defines.h>
47
 
#include <pipe/p_screen.h>
48
 
#include <pipe/p_context.h>
49
 
#include <util/u_inlines.h>
50
 
#include <util/u_format.h>
51
 
#include <util/u_caps.h>
52
 
#include <util/u_debug.h>
53
 
#include <os/os_thread.h>
 
46
#include "pipe/p_defines.h"
 
47
#include "pipe/p_screen.h"
 
48
#include "pipe/p_context.h"
 
49
#include "util/u_inlines.h"
 
50
#include "util/u_format.h"
 
51
#include "util/u_caps.h"
 
52
#include "util/u_debug.h"
 
53
#include "os/os_thread.h"
54
54
}
55
55
 
56
56
#include "galliumdxgi.h"
76
76
#define D3D11_STAGE_CS 5
77
77
#define D3D11_STAGES 6
78
78
 
 
79
#define D3D10_BLEND_COUNT 20
79
80
#define D3D11_BLEND_COUNT 20
80
81
extern unsigned d3d11_to_pipe_blend[D3D11_BLEND_COUNT];
81
82
 
82
83
#define D3D11_USAGE_COUNT 4
83
84
extern unsigned d3d11_to_pipe_usage[D3D11_USAGE_COUNT];
84
85
 
 
86
#define D3D10_STENCIL_OP_COUNT 9
85
87
#define D3D11_STENCIL_OP_COUNT 9
86
88
extern unsigned d3d11_to_pipe_stencil_op[D3D11_STENCIL_OP_COUNT];
87
89