~ubuntu-branches/ubuntu/natty/mesa/natty-proposed

« back to all changes in this revision

Viewing changes to src/gallium/winsys/drm/radeon/core/radeon_buffer.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Hooker, Robert Hooker, Christopher James Halse Rogers
  • Date: 2010-09-14 08:55:40 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100914085540-m4fpl0hdjlfd4jgz
Tags: 7.9~git20100909-0ubuntu1
[ Robert Hooker ]
* New upstream git snapshot up to commit 94118fe2d4b1e5 (LP: #631413)
* New features include ATI HD5xxx series support in r600, and a vastly
  improved glsl compiler.
* Remove pre-generated .pc's, use the ones generated at build time
  instead.
* Remove all references to mesa-utils now that its no longer shipped
  with the mesa source.
* Disable the experimental ARB_fragment_shader option by default on
  i915, it exposes incomplete functionality that breaks KDE compositing
  among other things. It can be enabled via driconf still. (LP: #628930).

[ Christopher James Halse Rogers ]
* debian/patches/04_osmesa_version.diff:
  - Refresh for new upstream
* Bugs fixed in this release:
  - Fixes severe rendering corruption in Unity on radeon (LP: #628727,
    LP: #596292, LP: #599741, LP: #630315, LP: #613694, LP: #599741).
  - Also fixes rendering in gnome-shell (LP: #578619).
  - Flickering in OpenGL apps on radeon (LP: #626943, LP: #610541).
  - Provides preliminary support for new intel chips (LP: #601052).
* debian/rules:
  - Update configure flags to match upstream reshuffling.
  - Explicitly remove gallium DRI drivers that we don't want to ship.
* Update debian/gbp.conf for this Maverick-specific packaging
* libegl1-mesa-dri-x11,kms: There are no longer separate kms or x11 drivers
  for EGL, libegl1-mesa-drivers now contains a single driver that provides
  both backends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2008 Jérôme Glisse
3
 
 * All Rights Reserved.
4
 
 *
5
 
 * Permission is hereby granted, free of charge, to any person obtaining
6
 
 * a copy of this software and associated documentation files (the
7
 
 * "Software"), to deal in the Software without restriction, including
8
 
 * without limitation the rights to use, copy, modify, merge, publish,
9
 
 * distribute, sub license, and/or sell copies of the Software, and to
10
 
 * permit persons to whom the Software is furnished to do so, subject to
11
 
 * the following conditions:
12
 
 *
13
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
 
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
15
 
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
 
 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
17
 
 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
 
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19
 
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20
 
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
21
 
 *
22
 
 * The above copyright notice and this permission notice (including the
23
 
 * next paragraph) shall be included in all copies or substantial portions
24
 
 * of the Software.
25
 
 */
26
 
/*
27
 
 * Authors:
28
 
 *      Jérôme Glisse <glisse@freedesktop.org>
29
 
 */
30
 
#ifndef RADEON_BUFFER_H
31
 
#define RADEON_BUFFER_H
32
 
 
33
 
#include "pipebuffer/pb_buffer.h"
34
 
 
35
 
#include "radeon_bo.h"
36
 
#include "radeon_cs.h"
37
 
 
38
 
#include "radeon_winsys.h"
39
 
 
40
 
struct radeon_pipe_buffer {
41
 
    struct pipe_buffer  base;
42
 
    /* Pointer to GPU-backed BO. */
43
 
    struct radeon_bo    *bo;
44
 
    /* Pointer to fallback PB buffer. */
45
 
    struct pb_buffer    *pb;
46
 
    boolean flinked;
47
 
    uint32_t flink;
48
 
};
49
 
 
50
 
#define RADEON_MAX_BOS 24
51
 
 
52
 
struct radeon_winsys_priv {
53
 
    /* DRM FD */
54
 
    int fd;
55
 
 
56
 
    /* Radeon BO manager. */
57
 
    struct radeon_bo_manager* bom;
58
 
 
59
 
    /* Radeon CS manager. */
60
 
    struct radeon_cs_manager* csm;
61
 
 
62
 
    /* Current CS. */
63
 
    struct radeon_cs* cs;
64
 
 
65
 
    /* Flush CB */
66
 
    void (*flush_cb)(void *);
67
 
    void *flush_data;
68
 
};
69
 
 
70
 
struct radeon_winsys* radeon_pipe_winsys(int fb);
71
 
#if 0
72
 
struct pipe_surface *radeon_surface_from_handle(struct radeon_context *radeon_context,
73
 
                                             uint32_t handle,
74
 
                                             enum pipe_format format,
75
 
                                             int w, int h, int pitch);
76
 
#endif
77
 
#endif