~ubuntu-branches/debian/jessie/xserver-xorg-video-intel/jessie

« back to all changes in this revision

Viewing changes to src/sna/sna_stream.c

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois
  • Date: 2011-08-27 18:55:26 UTC
  • mfrom: (26.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20110827185526-xzjpelw85c1dydct
Tags: 2:2.16.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2011 Intel Corporation
 
3
 *
 
4
 * Permission is hereby granted, free of charge, to any person obtaining a
 
5
 * copy of this software and associated documentation files (the "Software"),
 
6
 * to deal in the Software without restriction, including without limitation
 
7
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
8
 * and/or sell copies of the Software, and to permit persons to whom the
 
9
 * Software is furnished to do so, subject to the following conditions:
 
10
 *
 
11
 * The above copyright notice and this permission notice (including the next
 
12
 * paragraph) shall be included in all copies or substantial portions of the
 
13
 * Software.
 
14
 *
 
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 
18
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
21
 * SOFTWARE.
 
22
 *
 
23
 * Authors:
 
24
 *    Chris Wilson <chris@chris-wilson.co.uk>
 
25
 *
 
26
 */
 
27
 
 
28
#include "sna.h"
 
29
#include "sna_render.h"
 
30
 
 
31
#if DEBUG_STREAM
 
32
#undef DBG
 
33
#define DBG(x) ErrorF x
 
34
#endif
 
35
 
 
36
int sna_static_stream_init(struct sna_static_stream *stream)
 
37
{
 
38
        stream->used = 0;
 
39
        stream->size = 64*1024;
 
40
 
 
41
        stream->data = malloc(stream->size);
 
42
        return stream->data != NULL;
 
43
}
 
44
 
 
45
static uint32_t sna_static_stream_alloc(struct sna_static_stream *stream,
 
46
                                        uint32_t len, uint32_t align)
 
47
{
 
48
        uint32_t offset = ALIGN(stream->used, align);
 
49
        uint32_t size = offset + len;
 
50
 
 
51
        if (size > stream->size) {
 
52
                do
 
53
                        stream->size *= 2;
 
54
                while (stream->size < size);
 
55
 
 
56
                stream->data = realloc(stream->data, stream->size);
 
57
        }
 
58
 
 
59
        stream->used = size;
 
60
        return offset;
 
61
}
 
62
 
 
63
uint32_t sna_static_stream_add(struct sna_static_stream *stream,
 
64
                               const void *data, uint32_t len, uint32_t align)
 
65
{
 
66
        uint32_t offset = sna_static_stream_alloc(stream, len, align);
 
67
        memcpy(stream->data + offset, data, len);
 
68
        return offset;
 
69
}
 
70
 
 
71
void *sna_static_stream_map(struct sna_static_stream *stream,
 
72
                            uint32_t len, uint32_t align)
 
73
{
 
74
        uint32_t offset = sna_static_stream_alloc(stream, len, align);
 
75
        return memset(stream->data + offset, 0, len);
 
76
}
 
77
 
 
78
uint32_t sna_static_stream_offsetof(struct sna_static_stream *stream, void *ptr)
 
79
{
 
80
        return (uint8_t *)ptr - stream->data;
 
81
}
 
82
 
 
83
struct kgem_bo *sna_static_stream_fini(struct sna *sna,
 
84
                                       struct sna_static_stream *stream)
 
85
{
 
86
        struct kgem_bo *bo;
 
87
 
 
88
        DBG(("uploaded %d bytes of static state\n", stream->used));
 
89
 
 
90
        bo = kgem_create_linear(&sna->kgem, stream->used);
 
91
        if (bo && !kgem_bo_write(&sna->kgem, bo, stream->data, stream->used)) {
 
92
                kgem_bo_destroy(&sna->kgem, bo);
 
93
                return NULL;
 
94
        }
 
95
 
 
96
        free(stream->data);
 
97
 
 
98
        return bo;
 
99
}