~ubuntu-branches/ubuntu/edgy/xorg-server/edgy-updates

« back to all changes in this revision

Viewing changes to mi/migc.c

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Parra Novo
  • Date: 2006-07-25 20:06:28 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060725200628-gjmmd9gxfxdc4ejs
Tags: 1:1.1.1-0ubuntu1
* New Upstream version
* Changed Build-Depends from mesa-swrast-source to mesa-swx11-source,
  following Debian package nomenclature
* Re-did 12_security_policy_in_etc.diff for 1.1.1
* Dropped 15_security_allocate_local.diff (applied upstream)
* Dropped 16_SECURITY_setuid.diff (applied upstream)
* Dropped 000_ubuntu_fix_read_kernel_mapping.patch (applied upstream)
* Dropped 002_ubuntu_fix_for_certain_intel_chipsets.patch (applied upstream)
* Updated versioned Build-Depends on mesa-swx11-source to version
  6.5.0.cvs.20060725-0ubuntu1
* Added arrayobj.c, arrayobj.h, bitset.h & rbadaptors.h to
  GL/symlink-mesa.sh (linked from mesa-swx11-source)
* Added arrayobj.c to default build target on GL/mesa/main

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#include "migc.h"
41
41
 
42
42
/* ARGSUSED */
43
 
void
 
43
_X_EXPORT void
44
44
miChangeGC(pGC, mask)
45
45
    GCPtr           pGC;
46
46
    unsigned long   mask;
48
48
    return;
49
49
}
50
50
 
51
 
void
 
51
_X_EXPORT void
52
52
miDestroyGC(pGC)
53
53
    GCPtr           pGC;
54
54
{
63
63
 * create a private op array for a gc
64
64
 */
65
65
 
66
 
GCOpsPtr
 
66
_X_EXPORT GCOpsPtr
67
67
miCreateGCOps(prototype)
68
68
    GCOpsPtr        prototype;
69
69
{
79
79
    return ret;
80
80
}
81
81
 
82
 
void
 
82
_X_EXPORT void
83
83
miDestroyGCOps(ops)
84
84
    GCOpsPtr        ops;
85
85
{
88
88
}
89
89
 
90
90
 
91
 
void
 
91
_X_EXPORT void
92
92
miDestroyClip(pGC)
93
93
    GCPtr           pGC;
94
94
{
110
110
    pGC->clientClipType = CT_NONE;
111
111
}
112
112
 
113
 
void
 
113
_X_EXPORT void
114
114
miChangeClip(pGC, type, pvalue, nrects)
115
115
    GCPtr           pGC;
116
116
    int             type;
141
141
    pGC->stateChanges |= GCClipMask;
142
142
}
143
143
 
144
 
void
 
144
_X_EXPORT void
145
145
miCopyClip(pgcDst, pgcSrc)
146
146
    GCPtr           pgcDst, pgcSrc;
147
147
{
166
166
}
167
167
 
168
168
/* ARGSUSED */
169
 
void
 
169
_X_EXPORT void
170
170
miCopyGC(pGCSrc, changes, pGCDst)
171
171
    GCPtr           pGCSrc;
172
172
    unsigned long   changes;
175
175
    return;
176
176
}
177
177
 
178
 
void
 
178
_X_EXPORT void
179
179
miComputeCompositeClip(pGC, pDrawable)
180
180
    GCPtr           pGC;
181
181
    DrawablePtr     pDrawable;