progs/rbug: Use util_format_name().
[mesa.git] / progs / rbug / tex_dump.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_memory.h"
29 #include "util/u_debug.h"
30 #include "util/u_format.h"
31 #include "util/u_network.h"
32 #include "util/u_tile.h"
33 #include "rbug/rbug.h"
34
35 static void dump(rbug_texture_t tex,
36 struct rbug_proto_texture_info_reply *info,
37 struct rbug_proto_texture_read_reply *read,
38 int mip)
39 {
40 enum pipe_format format = info->format;
41 uint8_t *data = read->data;
42 unsigned width = info->width[mip];
43 unsigned height = info->height[mip];
44 unsigned dst_stride = width * 4 * 4;
45 unsigned src_stride = read->stride;
46 float *rgba = MALLOC(dst_stride * height);
47 int i;
48 char filename[512];
49
50 util_snprintf(filename, 512, "%llu_%s_%u.bmp",
51 (unsigned long long)tex, util_format_name(info->format), mip);
52
53 if (util_format_is_compressed(info->format)) {
54 debug_printf("skipping: %s\n", filename);
55 return;
56 }
57
58 debug_printf("saving: %s\n", filename);
59
60 for (i = 0; i < height; i++) {
61 pipe_tile_raw_to_rgba(format, data + src_stride * i,
62 width, 1,
63 &rgba[width*4*i], dst_stride);
64 }
65
66 debug_dump_float_rgba_bmp(filename, width, height, rgba, width);
67
68 FREE(rgba);
69 }
70
71 static void talk()
72 {
73 int c = u_socket_connect("localhost", 13370);
74 struct rbug_connection *con = rbug_from_socket(c);
75 struct rbug_header *header;
76 struct rbug_header *header2;
77 struct rbug_proto_texture_list_reply *list;
78 struct rbug_proto_texture_info_reply *info;
79 struct rbug_proto_texture_read_reply *read;
80 int i, j;
81
82 assert(c >= 0);
83 assert(con);
84 debug_printf("Connection get!\n");
85
86 debug_printf("Sending get textures\n");
87 rbug_send_texture_list(con, NULL);
88
89 debug_printf("Waiting for textures\n");
90 header = rbug_get_message(con, NULL);
91 assert(header->opcode == RBUG_OP_TEXTURE_LIST_REPLY);
92 list = (struct rbug_proto_texture_list_reply *)header;
93
94 debug_printf("Got textures:\n");
95 for (i = 0; i < list->textures_len; i++) {
96 rbug_send_texture_info(con, list->textures[i], NULL);
97
98 header = rbug_get_message(con, NULL);
99 assert(header->opcode == RBUG_OP_TEXTURE_INFO_REPLY);
100 info = (struct rbug_proto_texture_info_reply *)header;
101
102 for (j = 0; j <= info->last_level; j++) {
103 rbug_send_texture_read(con, list->textures[i],
104 0, j, 0,
105 0, 0, info->width[j], info->height[j],
106 NULL);
107
108 header2 = rbug_get_message(con, NULL);
109 assert(header2->opcode == RBUG_OP_TEXTURE_READ_REPLY);
110 read = (struct rbug_proto_texture_read_reply *)header2;
111
112 dump(list->textures[i], info, read, j);
113
114 rbug_free_header(header2);
115 }
116
117 rbug_free_header(header);
118
119 }
120 rbug_free_header(&list->header);
121 rbug_disconnect(con);
122 }
123
124 int main(int argc, char** argv)
125 {
126 talk();
127 return 0;
128 }