Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tex_dump.c 4.0KB

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