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

« back to all changes in this revision

Viewing changes to hw/xquartz/GL/visualConfigs.c

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington, Timo Aaltonen, Bryce Harrington
  • Date: 2010-03-24 12:04:20 UTC
  • mfrom: (1.1.32 upstream) (0.11.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100324120420-qbk5la526uy4k8xe
Tags: 2:1.7.6-1ubuntu1
[Timo Aaltonen]
* Merge from Debian unstable.
* Drop patch 107, included in Debian.
* Drop patch 108, included upstream.
* control: Drop the udeb, we don't need it for lucid.
* control: Relax/drop some build-deps caused by the udeb.

[Bryce Harrington]
* Add 110_findglyphbyhash-fix.patch from upstream to fix a sporadic
  crash in FindGlyphByHash.
  (LP: #401045)
* Renumber patch 201_armel-drv-fallbacks.patch to 111

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
    int numConfigs = 0;
63
63
    __GLXconfig *visualConfigs, *c;
64
64
    struct glCapabilities caps;
65
 
    struct glCapabilitiesConfig *conf = NULL;
 
65
    struct glCapabilitiesConfig *conf;
66
66
    int stereo, depth, aux, buffers, stencil, accum, color, msample;
67
67
    
68
68
    if(getGlCapabilities(&caps)) {
94
94
     */
95
95
    
96
96
    assert(NULL != caps.configurations);
97
 
    conf = caps.configurations;
98
97
    
99
98
    numConfigs = 0;
100
99