~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/state_trackers/d3d1x/d3d1xshader/src/dxbc_parse.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2011-08-04 16:25:08 UTC
  • mfrom: (1.2.37 upstream)
  • Revision ID: james.westby@ubuntu.com-20110804162508-kujg82moxerjg1kk
Tags: 7.11-0ubuntu1
* Fake merge from Debian experimental, updating previous changelog entries.
  New upstream release fixes infrequent X crash (LP: #800778).
  Remaining Ubuntu changes:
 - debian/control
    + Drop lesstif-dev from Build-Depends; it's in Universe.
    + Comment out GLw libs since it depends on lesstif-dev.
    + Drop i686 swx11 libgl package.
    + Add libdrm-dev to mesa-common-dev Depends.
    + Drop libwayland-dev from Build-Depends; it's in Universe.
    + Update Breaks for Ubuntu versions
    + Enable llvm on armel as well as i386 and amd64
  - debian/rules
    + Use --disable-glw for swx11 targets too.
    + Don't enable motif for swx11 targets.
    + Use lzma compression for binary debs to save CD space.
    + Drop unloved mach64 driver.
    + Use --enable-shared-dricore to claw back CD space.
    + Enable llvmpipe software rasteriser.
    + Enable llvm on armel as well as i386 and amd64
  - debian/patches
    + 100_no_abi_tag.patch
    + 101_ubuntu_hidden_glname.patch
    + 103_savage-expose_fbmodes_with_nonzero_alpha.patch
  - rules, libgl1-mesa-{glx,dev,swx11,swx11-dev}.install.in,
    libgl1-mesa-{glx,swx11}.{postinst,prerm}.in, libgl1-mesa-dev.links.in:
    Install libGL.so* in /usr/lib/mesa to allow things to work with
    alternatives.
  - debian/not-installed:
    + Drop i686 files; we don't build 686-optimised packages in the first
      place.
  - debian/gbp.conf
    + Point at Ubuntu branch to make git-buildpackage less narky.
  - 113_fix_tls.diff: Fix crashes in unrelated code due to TLS usage.
  - debian/patches/111_export_searchdirs_in_dripc.diff:
    + Add drisearchdirs variable to dri.pc so the Xserver can pick up the
      alternate DRI driver dirs.
  - debian/patches/115_llvm_dynamic_linking.diff
    + Dynamically link DRI drivers to libllvm.  Saves ~6MiB per DRI driver.
  - debian/patches/116_use_shared_galliumcore.diff:
  - debian/libgl1-mesa-dri.install.in:
    + Link gallium DRI drivers against shared gallium routines to save CD
      space.
* debian/rules:
* debian/libgl1-mesa-dri-experimental.install.{i386,amd64}.in
  - Explicitly install i915g only when it has been built, matching what is
    done with r300g.
* debian/rules:
* debian/control:
* debian/libegl1-mesa{,-dev}.install.in:
* debian/libegl1-mesa.symbols:
  - Enable the Wayland EGL backend.
* debian/rules:
* debian/libegl1-mesa.{postinst,prerm,install}.in:
* debian/libegl1-mesa-dev.{install,links}.in:
* debian/libgles{1,2}-mesa.install.in:
* debian/libgles{1,2}-mesa-dev.links.in:
* debian/libopenvg1-mesa{,-dev}.install.in:
* debian/libopenvg1-mesa-dev.links.in:
  - Use alternatives for libEGL to match the handling of libGL.
    libEGL (and associated GL|ES and OpenVG libraries) now live in
    /usr/lib/$MULTIARCH/mesa-egl.  (LP: #812639)
* debian/patches/118_fix_24bpp_software_rendering.diff:
  - Cherry pick upstream patch from master fixing graphical corruption when
    using a 24bpp framebuffer and software rendering. (LP: #810339)
* debian/rules:
* debian/clean:
  - Generate xmlpool pot file and clean up other po files for
    pkgbinarymangler's benefit (LP: #410264).
* debian/patches/119_r600g_gnome_shell_rendering_fix.diff:
  - Cherry pick upstream commit fixing rendering corruption in gnome-shell
    (and therefore likely Unity as well).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**************************************************************************
2
 
 *
3
 
 * Copyright 2010 Luca Barbieri
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, sublicense, 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 above copyright notice and this permission notice (including the
14
 
 * next paragraph) shall be included in all copies or substantial
15
 
 * portions of the Software.
16
 
 *
17
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18
 
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
 
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20
 
 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21
 
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22
 
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23
 
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
 
 *
25
 
 **************************************************************************/
26
 
 
27
 
#include <memory>
28
 
#include "dxbc.h"
29
 
#include <d3d11shader.h>
30
 
#include <d3dcommon.h>
31
 
 
32
 
dxbc_container* dxbc_parse(const void* data, int size)
33
 
{
34
 
        std::auto_ptr<dxbc_container> container(new dxbc_container());
35
 
        container->data = data;
36
 
        dxbc_container_header* header = (dxbc_container_header*)data;
37
 
        uint32_t* chunk_offsets = (uint32_t*)(header + 1);
38
 
        if(bswap_le32(header->fourcc) != FOURCC_DXBC)
39
 
                return 0;
40
 
        unsigned num_chunks = bswap_le32(header->chunk_count);
41
 
        for(unsigned i = 0; i < num_chunks; ++i)
42
 
        {
43
 
                unsigned offset = bswap_le32(chunk_offsets[i]);
44
 
                dxbc_chunk_header* chunk = (dxbc_chunk_header*)((char*)data + offset);
45
 
                unsigned fourcc = bswap_le32(chunk->fourcc);
46
 
                container->chunk_map[fourcc] = i;
47
 
                container->chunks.push_back(chunk);
48
 
        }
49
 
        return container.release();
50
 
}
51
 
 
52
 
dxbc_chunk_header* dxbc_find_chunk(const void* data, int size, unsigned fourcc)
53
 
{
54
 
        dxbc_container_header* header = (dxbc_container_header*)data;
55
 
        uint32_t* chunk_offsets = (uint32_t*)(header + 1);
56
 
        if(bswap_le32(header->fourcc) != FOURCC_DXBC)
57
 
                return 0;
58
 
        unsigned num_chunks = bswap_le32(header->chunk_count);
59
 
        for(unsigned i = 0; i < num_chunks; ++i)
60
 
        {
61
 
                unsigned offset = bswap_le32(chunk_offsets[i]);
62
 
                dxbc_chunk_header* chunk = (dxbc_chunk_header*)((char*)data + offset);
63
 
                if(bswap_le32(chunk->fourcc) == fourcc)
64
 
                        return chunk;
65
 
        }
66
 
        return 0;
67
 
}
68
 
 
69
 
int dxbc_parse_signature(dxbc_chunk_signature* sig, D3D11_SIGNATURE_PARAMETER_DESC** params)
70
 
{
71
 
        unsigned count = bswap_le32(sig->count);
72
 
        *params = (D3D11_SIGNATURE_PARAMETER_DESC*)malloc(sizeof(D3D11_SIGNATURE_PARAMETER_DESC) * count);
73
 
 
74
 
        for (unsigned i = 0; i < count; ++i)
75
 
        {
76
 
                D3D11_SIGNATURE_PARAMETER_DESC& param = (*params)[i];
77
 
                param.SemanticName = (char*)&sig->count + bswap_le32(sig->elements[i].name_offset);
78
 
                param.SemanticIndex = bswap_le32(sig->elements[i].semantic_index);
79
 
                param.SystemValueType = (D3D_NAME)bswap_le32(sig->elements[i].system_value_type);
80
 
                param.ComponentType = (D3D_REGISTER_COMPONENT_TYPE)bswap_le32(sig->elements[i].component_type);
81
 
                param.Mask = sig->elements[i].mask;
82
 
                param.ReadWriteMask = sig->elements[i].read_write_mask;
83
 
                param.Stream = sig->elements[i].stream;
84
 
        }
85
 
        return count;
86
 
}