~ubuntu-branches/ubuntu/trusty/xserver-xorg-video-nouveau/trusty

« back to all changes in this revision

Viewing changes to src/nouveau_crtc.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2009-01-05 02:43:34 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090105024334-iitrbwdatd25n9ke
Tags: 1:0.0.10~git+20090105+7dc567d-1
* New upstream snapshot
  - 7dc567d... nv50: correct size/layout of uploaded data
  - 159c18c... Make CHECK_TIMEOUT() a little more correct.
  - 5d281a2... nv04-nv4x: support RandR 1.3 panning
  - 3c4705c... Implement bios opcodes 4C and 4D
  - 1fd60f2... Group all DCB I2C info for a given bus in a structure
  - 31c9958... nv50: implement get_crtc
  - f7a7578... nv50: implement set_origin (mostly used for panning)
  - 74b2e4e... configure: Avoid compiling drm modesetting code by accident.
  - d104f14... nv50: Improve lut code.
  - 20f93a9... randr12: pass cursor visibility changes through mode state 
    structures
  - 763e0f8... randr12: allow ddc while crtc is locked
  - 9d8bd45... Punt all bios structs and defines into a new header
  - a34a2c0... Do not attempt to parse FP mode tables for Mac laptops 
    (#18636)
  - 1aba513... nv50: program physical addresses into CRTCs, not VM 
    addresses.
  - 65b956f... randr12: fix stupidity from 539f4990
  - 1666e85... nv50: use bios provided load detect value
  - a020a44... bios: support g80 loadval table
  - 220cbb6... nv50_randr: plug a small memory leak
* Update Build-Depends on libdrm-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
        uint32_t x; /* relative to the frontbuffer */
40
40
        uint32_t y;
41
41
 
 
42
        /* Gamma */
 
43
        struct nouveau_bo *lut;
 
44
        struct {
 
45
                uint16_t red;
 
46
                uint16_t green;
 
47
                uint16_t blue;
 
48
                uint16_t unused;
 
49
        } lut_values[256];
 
50
        bool lut_values_valid;
 
51
 
42
52
        /* Options and some state. */
43
53
        Bool modeset_lock;
44
54
        Bool dithering;