Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

fd5_context.c 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright (C) 2016 Rob Clark <robclark@freedesktop.org>
  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 FROM,
  20. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. * SOFTWARE.
  22. *
  23. * Authors:
  24. * Rob Clark <robclark@freedesktop.org>
  25. */
  26. #include "freedreno_query_acc.h"
  27. #include "fd5_context.h"
  28. #include "fd5_compute.h"
  29. #include "fd5_blend.h"
  30. #include "fd5_draw.h"
  31. #include "fd5_emit.h"
  32. #include "fd5_gmem.h"
  33. #include "fd5_program.h"
  34. #include "fd5_query.h"
  35. #include "fd5_rasterizer.h"
  36. #include "fd5_texture.h"
  37. #include "fd5_zsa.h"
  38. static void
  39. fd5_context_destroy(struct pipe_context *pctx)
  40. {
  41. struct fd5_context *fd5_ctx = fd5_context(fd_context(pctx));
  42. fd_bo_del(fd5_ctx->vs_pvt_mem);
  43. fd_bo_del(fd5_ctx->fs_pvt_mem);
  44. fd_bo_del(fd5_ctx->vsc_size_mem);
  45. fd_bo_del(fd5_ctx->blit_mem);
  46. fd_context_cleanup_common_vbos(&fd5_ctx->base);
  47. u_upload_destroy(fd5_ctx->border_color_uploader);
  48. fd_context_destroy(pctx);
  49. }
  50. static const uint8_t primtypes[] = {
  51. [PIPE_PRIM_POINTS] = DI_PT_POINTLIST,
  52. [PIPE_PRIM_LINES] = DI_PT_LINELIST,
  53. [PIPE_PRIM_LINE_STRIP] = DI_PT_LINESTRIP,
  54. [PIPE_PRIM_LINE_LOOP] = DI_PT_LINELOOP,
  55. [PIPE_PRIM_TRIANGLES] = DI_PT_TRILIST,
  56. [PIPE_PRIM_TRIANGLE_STRIP] = DI_PT_TRISTRIP,
  57. [PIPE_PRIM_TRIANGLE_FAN] = DI_PT_TRIFAN,
  58. [PIPE_PRIM_MAX] = DI_PT_RECTLIST, /* internal clear blits */
  59. };
  60. struct pipe_context *
  61. fd5_context_create(struct pipe_screen *pscreen, void *priv, unsigned flags)
  62. {
  63. struct fd_screen *screen = fd_screen(pscreen);
  64. struct fd5_context *fd5_ctx = CALLOC_STRUCT(fd5_context);
  65. struct pipe_context *pctx;
  66. if (!fd5_ctx)
  67. return NULL;
  68. pctx = &fd5_ctx->base.base;
  69. fd5_ctx->base.dev = fd_device_ref(screen->dev);
  70. fd5_ctx->base.screen = fd_screen(pscreen);
  71. pctx->destroy = fd5_context_destroy;
  72. pctx->create_blend_state = fd5_blend_state_create;
  73. pctx->create_rasterizer_state = fd5_rasterizer_state_create;
  74. pctx->create_depth_stencil_alpha_state = fd5_zsa_state_create;
  75. fd5_draw_init(pctx);
  76. fd5_compute_init(pctx);
  77. fd5_gmem_init(pctx);
  78. fd5_texture_init(pctx);
  79. fd5_prog_init(pctx);
  80. fd5_emit_init(pctx);
  81. pctx = fd_context_init(&fd5_ctx->base, pscreen, primtypes, priv);
  82. if (!pctx)
  83. return NULL;
  84. fd5_ctx->vs_pvt_mem = fd_bo_new(screen->dev, 0x2000,
  85. DRM_FREEDRENO_GEM_TYPE_KMEM);
  86. fd5_ctx->fs_pvt_mem = fd_bo_new(screen->dev, 0x2000,
  87. DRM_FREEDRENO_GEM_TYPE_KMEM);
  88. fd5_ctx->vsc_size_mem = fd_bo_new(screen->dev, 0x1000,
  89. DRM_FREEDRENO_GEM_TYPE_KMEM);
  90. fd5_ctx->blit_mem = fd_bo_new(screen->dev, 0x1000,
  91. DRM_FREEDRENO_GEM_TYPE_KMEM);
  92. fd_context_setup_common_vbos(&fd5_ctx->base);
  93. fd5_query_context_init(pctx);
  94. fd5_ctx->border_color_uploader = u_upload_create(pctx, 4096, 0,
  95. PIPE_USAGE_STREAM);
  96. return pctx;
  97. }