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.

anv_meta.h 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright © 2015 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
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. */
  23. #ifndef ANV_META_H
  24. #define ANV_META_H
  25. #include "anv_private.h"
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. #define ANV_META_VERTEX_BINDING_COUNT 2
  30. struct anv_meta_saved_state {
  31. struct anv_vertex_binding old_vertex_bindings[ANV_META_VERTEX_BINDING_COUNT];
  32. struct anv_descriptor_set *old_descriptor_set0;
  33. struct anv_pipeline *old_pipeline;
  34. /**
  35. * Bitmask of (1 << VK_DYNAMIC_STATE_*). Defines the set of saved dynamic
  36. * state.
  37. */
  38. uint32_t dynamic_mask;
  39. struct anv_dynamic_state dynamic;
  40. };
  41. VkResult anv_device_init_meta_clear_state(struct anv_device *device);
  42. void anv_device_finish_meta_clear_state(struct anv_device *device);
  43. void
  44. anv_meta_save(struct anv_meta_saved_state *state,
  45. const struct anv_cmd_buffer *cmd_buffer,
  46. uint32_t dynamic_mask);
  47. void
  48. anv_meta_restore(const struct anv_meta_saved_state *state,
  49. struct anv_cmd_buffer *cmd_buffer);
  50. VkImageViewType
  51. anv_meta_get_view_type(const struct anv_image *image);
  52. uint32_t
  53. anv_meta_get_iview_layer(const struct anv_image *dest_image,
  54. const VkImageSubresourceLayers *dest_subresource,
  55. const VkOffset3D *dest_offset);
  56. #ifdef __cplusplus
  57. }
  58. #endif
  59. #endif /* ANV_META_H */