Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. /**************************************************************************
  2.  *
  3.  * Copyright 2008 VMware, Inc.
  4.  * All Rights Reserved.
  5.  *
  6.  * Permission is hereby granted, free of charge, to any person obtaining a
  7.  * copy of this software and associated documentation files (the
  8.  * "Software"), to deal in the Software without restriction, including
  9.  * without limitation the rights to use, copy, modify, merge, publish,
  10.  * distribute, sub license, and/or sell copies of the Software, and to
  11.  * permit persons to whom the Software is furnished to do so, subject to
  12.  * the following conditions:
  13.  *
  14.  * The above copyright notice and this permission notice (including the
  15.  * next paragraph) shall be included in all copies or substantial portions
  16.  * of the Software.
  17.  *
  18.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  19.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  20.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
  21.  * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
  22.  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  23.  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  24.  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.  *
  26.  **************************************************************************/
  27.  
  28. #ifndef TR_DUMP_STATE_H_
  29. #define TR_DUMP_STATE_H_
  30.  
  31. #include "pipe/p_state.h"
  32. #include "pipe/p_shader_tokens.h"
  33.  
  34.  
  35. void trace_dump_resource_template(const struct pipe_resource *templat);
  36.  
  37. void trace_dump_box(const struct pipe_box *box);
  38.  
  39. void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state);
  40.  
  41. void trace_dump_poly_stipple(const struct pipe_poly_stipple *state);
  42.  
  43. void trace_dump_viewport_state(const struct pipe_viewport_state *state);
  44.  
  45. void trace_dump_scissor_state(const struct pipe_scissor_state *state);
  46.  
  47. void trace_dump_clip_state(const struct pipe_clip_state *state);
  48.  
  49. void trace_dump_token(const struct tgsi_token *token);
  50.  
  51. void trace_dump_shader_state(const struct pipe_shader_state *state);
  52.  
  53. void trace_dump_depth_stencil_alpha_state(const struct pipe_depth_stencil_alpha_state *state);
  54.  
  55. void trace_dump_blend_state(const struct pipe_blend_state *state);
  56.  
  57. void trace_dump_blend_color(const struct pipe_blend_color *state);
  58.  
  59. void trace_dump_stencil_ref(const struct pipe_stencil_ref *state);
  60.  
  61. void trace_dump_framebuffer_state(const struct pipe_framebuffer_state *state);
  62.  
  63. void trace_dump_sampler_state(const struct pipe_sampler_state *state);
  64.  
  65. void trace_dump_sampler_view_template(const struct pipe_sampler_view *view,
  66.                                       enum pipe_texture_target target);
  67.  
  68. void trace_dump_surface_template(const struct pipe_surface *state,
  69.                                  enum pipe_texture_target target);
  70.  
  71. void trace_dump_transfer(const struct pipe_transfer *state);
  72.  
  73. void trace_dump_vertex_buffer(const struct pipe_vertex_buffer *state);
  74.  
  75. void trace_dump_index_buffer(const struct pipe_index_buffer *state);
  76.  
  77. void trace_dump_vertex_element(const struct pipe_vertex_element *state);
  78.  
  79. void trace_dump_constant_buffer(const struct pipe_constant_buffer *state);
  80.  
  81. void trace_dump_draw_info(const struct pipe_draw_info *state);
  82.  
  83. void trace_dump_blit_info(const struct pipe_blit_info *);
  84.  
  85. void trace_dump_query_result(unsigned query_type,
  86.                              const union pipe_query_result *result);
  87.  
  88. #endif /* TR_STATE_H */
  89.