Merge branch 'mesa_7_7_branch'
[mesa.git] / progs / rbug / bin_to_bmp.c
1 /*
2 * Copyright 2009 VMware, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * VMWARE AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 #include "pipe/p_compiler.h"
26 #include "pipe/p_format.h"
27 #include "pipe/p_state.h"
28 #include "util/u_format.h"
29 #include "util/u_memory.h"
30 #include "util/u_debug.h"
31 #include "util/u_network.h"
32 #include "util/u_tile.h"
33
34 static uint8_t* read(const char *filename, unsigned size);
35 static void dump(unsigned src_width, unsigned src_height,
36 unsigned src_stride, enum pipe_format src_format,
37 uint8_t *data, unsigned src_size);
38
39 int main(int argc, char** argv)
40 {
41 /* change these */
42 unsigned width = 64;
43 unsigned height = 64;
44 unsigned stride = width * 4;
45 unsigned size = stride * height;
46 const char *filename = "mybin.bin";
47 enum pipe_format format = PIPE_FORMAT_A8R8G8B8_UNORM;
48
49 dump(width, height, stride, format, read(filename, size), size);
50
51 return 0;
52 }
53
54 static void dump(unsigned width, unsigned height,
55 unsigned src_stride, enum pipe_format src_format,
56 uint8_t *data, unsigned src_size)
57 {
58 enum pipe_format dst_format = PIPE_FORMAT_R32G32B32A32_FLOAT;
59 unsigned dst_stride;
60 unsigned dst_size;
61 float *rgba;
62 int i;
63 char filename[512];
64
65 {
66 assert(src_stride >= util_format_get_stride(src_format, width));
67 }
68 {
69 dst_stride = util_format_get_stride(dst_format, width);
70 dst_size = util_format_get_2d_size(dst_format, dst_stride, width);
71 rgba = MALLOC(dst_size);
72 }
73
74 util_snprintf(filename, 512, "%s.bmp", pf_name(src_format));
75
76 if (pf_is_compressed(src_format)) {
77 debug_printf("skipping: %s\n", filename);
78 return;
79 }
80
81 debug_printf("saving: %s\n", filename);
82
83 for (i = 0; i < height; i++) {
84 pipe_tile_raw_to_rgba(src_format, data + src_stride * i,
85 width, 1,
86 &rgba[width*4*i], dst_stride);
87 }
88
89 debug_dump_float_rgba_bmp(filename, width, height, rgba, width);
90
91 FREE(rgba);
92 }
93
94 static uint8_t* read(const char *filename, unsigned size)
95 {
96 uint8_t *data;
97 FILE *file = fopen(filename, "rb");
98
99 data = MALLOC(size);
100
101 fread(data, 1, size, file);
102 fclose(file);
103
104 return data;
105 }