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

« back to all changes in this revision

Viewing changes to include/scrnintstr.h

  • 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:
321
321
        unsigned short* /*pblue*/,
322
322
        VisualPtr /*pVisual*/);
323
323
 
324
 
#ifdef NEED_SCREEN_REGIONS
325
 
 
326
 
typedef    RegionPtr (* RegionCreateProcPtr)(
327
 
        BoxPtr /*rect*/,
328
 
        int /*size*/);
329
 
 
330
 
typedef    void (* RegionInitProcPtr)(
331
 
        RegionPtr /*pReg*/,
332
 
        BoxPtr /*rect*/,
333
 
        int /*size*/);
334
 
 
335
 
typedef    Bool (* RegionCopyProcPtr)(
336
 
        RegionPtr /*dst*/,
337
 
        RegionPtr /*src*/);
338
 
 
339
 
typedef    void (* RegionDestroyProcPtr)(
340
 
        RegionPtr /*pReg*/);
341
 
 
342
 
typedef    void (* RegionUninitProcPtr)(
343
 
        RegionPtr /*pReg*/);
344
 
 
345
 
typedef    Bool (* IntersectProcPtr)(
346
 
        RegionPtr /*newReg*/,
347
 
        RegionPtr /*reg1*/,
348
 
        RegionPtr /*reg2*/);
349
 
 
350
 
typedef    Bool (* UnionProcPtr)(
351
 
        RegionPtr /*newReg*/,
352
 
        RegionPtr /*reg1*/,
353
 
        RegionPtr /*reg2*/);
354
 
 
355
 
typedef    Bool (* SubtractProcPtr)(
356
 
        RegionPtr /*regD*/,
357
 
        RegionPtr /*regM*/,
358
 
        RegionPtr /*regS*/);
359
 
 
360
 
typedef    Bool (* InverseProcPtr)(
361
 
        RegionPtr /*newReg*/,
362
 
        RegionPtr /*reg1*/,
363
 
        BoxPtr /*invRect*/);
364
 
 
365
 
typedef    void (* RegionResetProcPtr)(
366
 
        RegionPtr /*pReg*/,
367
 
        BoxPtr /*pBox*/);
368
 
 
369
 
typedef    void (* TranslateRegionProcPtr)(
370
 
        RegionPtr /*pReg*/,
371
 
        int /*x*/,
372
 
        int /*y*/);
373
 
 
374
 
typedef    int (* RectInProcPtr)(
375
 
        RegionPtr /*region*/,
376
 
        BoxPtr /*prect*/);
377
 
 
378
 
typedef    Bool (* PointInRegionProcPtr)(
379
 
        RegionPtr /*pReg*/,
380
 
        int /*x*/,
381
 
        int /*y*/,
382
 
        BoxPtr /*box*/);
383
 
 
384
 
typedef    Bool (* RegionNotEmptyProcPtr)(
385
 
        RegionPtr /*pReg*/);
386
 
 
387
 
typedef    Bool (* RegionEqualProcPtr)(
388
 
        RegionPtr /*pReg1*/,
389
 
        RegionPtr /*pReg2*/);
390
 
 
391
 
typedef    Bool (* RegionBrokenProcPtr)(
392
 
        RegionPtr /*pReg*/);
393
 
 
394
 
typedef    Bool (* RegionBreakProcPtr)(
395
 
        RegionPtr /*pReg*/);
396
 
 
397
 
typedef    void (* RegionEmptyProcPtr)(
398
 
        RegionPtr /*pReg*/);
399
 
 
400
 
typedef    BoxPtr (* RegionExtentsProcPtr)(
401
 
        RegionPtr /*pReg*/);
402
 
 
403
 
typedef    Bool (* RegionAppendProcPtr)(
404
 
        RegionPtr /*dstrgn*/,
405
 
        RegionPtr /*rgn*/);
406
 
 
407
 
typedef    Bool (* RegionValidateProcPtr)(
408
 
        RegionPtr /*badreg*/,
409
 
        Bool* /*pOverlap*/);
410
 
 
411
 
#endif /* NEED_SCREEN_REGIONS */
412
 
 
413
324
typedef    RegionPtr (* BitmapToRegionProcPtr)(
414
325
        PixmapPtr /*pPix*/);
415
326
 
416
 
#ifdef NEED_SCREEN_REGIONS
417
 
 
418
 
typedef    RegionPtr (* RectsToRegionProcPtr)(
419
 
        int /*nrects*/,
420
 
        xRectangle* /*prect*/,
421
 
        int /*ctype*/);
422
 
 
423
 
#endif /* NEED_SCREEN_REGIONS */
424
 
 
425
327
typedef    void (* SendGraphicsExposeProcPtr)(
426
328
        ClientPtr /*client*/,
427
329
        RegionPtr /*pRgn*/,
634
536
 
635
537
    /* Region procedures */
636
538
 
637
 
#ifdef NEED_SCREEN_REGIONS
638
 
    RegionCreateProcPtr         RegionCreate;
639
 
    RegionInitProcPtr           RegionInit;
640
 
    RegionCopyProcPtr           RegionCopy;
641
 
    RegionDestroyProcPtr        RegionDestroy;
642
 
    RegionUninitProcPtr         RegionUninit;
643
 
    IntersectProcPtr            Intersect;
644
 
    UnionProcPtr                Union;
645
 
    SubtractProcPtr             Subtract;
646
 
    InverseProcPtr              Inverse;
647
 
    RegionResetProcPtr          RegionReset;
648
 
    TranslateRegionProcPtr      TranslateRegion;
649
 
    RectInProcPtr               RectIn;
650
 
    PointInRegionProcPtr        PointInRegion;
651
 
    RegionNotEmptyProcPtr       RegionNotEmpty;
652
 
    RegionEqualProcPtr          RegionEqual;
653
 
    RegionBrokenProcPtr         RegionBroken;
654
 
    RegionBreakProcPtr          RegionBreak;
655
 
    RegionEmptyProcPtr          RegionEmpty;
656
 
    RegionExtentsProcPtr        RegionExtents;
657
 
    RegionAppendProcPtr         RegionAppend;
658
 
    RegionValidateProcPtr       RegionValidate;
659
 
#endif /* NEED_SCREEN_REGIONS */
660
539
    BitmapToRegionProcPtr       BitmapToRegion;
661
 
#ifdef NEED_SCREEN_REGIONS
662
 
    RectsToRegionProcPtr        RectsToRegion;
663
 
#endif /* NEED_SCREEN_REGIONS */
664
540
    SendGraphicsExposeProcPtr   SendGraphicsExpose;
665
541
 
666
542
    /* os layer procedures */