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

« back to all changes in this revision

Viewing changes to src/mesa/main/accum.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:
42
42
 
43
43
struct _glapi_table;
44
44
struct gl_context;
 
45
struct gl_renderbuffer;
45
46
 
46
47
#if FEATURE_accum
47
48
 
51
52
extern void
52
53
_mesa_init_accum_dispatch(struct _glapi_table *disp);
53
54
 
 
55
extern void
 
56
_mesa_accum(struct gl_context *ctx, GLenum op, GLfloat value);
 
57
 
 
58
extern void
 
59
_mesa_clear_accum_buffer(struct gl_context *ctx);
 
60
 
54
61
#else /* FEATURE_accum */
55
62
 
56
63
#include "main/compiler.h"
57
64
 
58
 
static INLINE void
 
65
static inline void
59
66
_mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
60
67
{
61
68
   /* this is used in _mesa_PopAttrib */
62
69
   ASSERT_NO_FEATURE();
63
70
}
64
71
 
65
 
static INLINE void
 
72
static inline void
66
73
_mesa_init_accum_dispatch(struct _glapi_table *disp)
67
74
{
68
75
}
69
76
 
 
77
static inline void
 
78
_mesa_accum(struct gl_context *ctx, GLenum op, GLfloat value)
 
79
{
 
80
}
 
81
 
 
82
static inline void
 
83
_mesa_clear_accum_buffer(struct gl_context *ctx)
 
84
{
 
85
}
 
86
 
 
87
 
70
88
#endif /* FEATURE_accum */
71
89
 
72
90
extern void