Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/gallium/drivers/freedreno/a5xx/fd5_context.c
4574 views
1
/*
2
* Copyright (C) 2016 Rob Clark <[email protected]>
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 <[email protected]>
25
*/
26
27
#include "freedreno_query_acc.h"
28
29
#include "fd5_blend.h"
30
#include "fd5_blitter.h"
31
#include "fd5_compute.h"
32
#include "fd5_context.h"
33
#include "fd5_draw.h"
34
#include "fd5_emit.h"
35
#include "fd5_gmem.h"
36
#include "fd5_program.h"
37
#include "fd5_query.h"
38
#include "fd5_rasterizer.h"
39
#include "fd5_texture.h"
40
#include "fd5_zsa.h"
41
42
static void
43
fd5_context_destroy(struct pipe_context *pctx) in_dt
44
{
45
struct fd5_context *fd5_ctx = fd5_context(fd_context(pctx));
46
47
u_upload_destroy(fd5_ctx->border_color_uploader);
48
pipe_resource_reference(&fd5_ctx->border_color_buf, NULL);
49
50
fd_context_destroy(pctx);
51
52
fd_bo_del(fd5_ctx->vsc_size_mem);
53
fd_bo_del(fd5_ctx->blit_mem);
54
55
fd_context_cleanup_common_vbos(&fd5_ctx->base);
56
57
free(fd5_ctx);
58
}
59
60
/* clang-format off */
61
static const uint8_t primtypes[] = {
62
[PIPE_PRIM_POINTS] = DI_PT_POINTLIST,
63
[PIPE_PRIM_LINES] = DI_PT_LINELIST,
64
[PIPE_PRIM_LINE_STRIP] = DI_PT_LINESTRIP,
65
[PIPE_PRIM_LINE_LOOP] = DI_PT_LINELOOP,
66
[PIPE_PRIM_TRIANGLES] = DI_PT_TRILIST,
67
[PIPE_PRIM_TRIANGLE_STRIP] = DI_PT_TRISTRIP,
68
[PIPE_PRIM_TRIANGLE_FAN] = DI_PT_TRIFAN,
69
[PIPE_PRIM_MAX] = DI_PT_RECTLIST, /* internal clear blits */
70
};
71
/* clang-format on */
72
73
struct pipe_context *
74
fd5_context_create(struct pipe_screen *pscreen, void *priv,
75
unsigned flags) disable_thread_safety_analysis
76
{
77
struct fd_screen *screen = fd_screen(pscreen);
78
struct fd5_context *fd5_ctx = CALLOC_STRUCT(fd5_context);
79
struct pipe_context *pctx;
80
81
if (!fd5_ctx)
82
return NULL;
83
84
pctx = &fd5_ctx->base.base;
85
pctx->screen = pscreen;
86
87
fd5_ctx->base.dev = fd_device_ref(screen->dev);
88
fd5_ctx->base.screen = fd_screen(pscreen);
89
fd5_ctx->base.last.key = &fd5_ctx->last_key;
90
91
pctx->destroy = fd5_context_destroy;
92
pctx->create_blend_state = fd5_blend_state_create;
93
pctx->create_rasterizer_state = fd5_rasterizer_state_create;
94
pctx->create_depth_stencil_alpha_state = fd5_zsa_state_create;
95
96
fd5_draw_init(pctx);
97
fd5_compute_init(pctx);
98
fd5_gmem_init(pctx);
99
fd5_texture_init(pctx);
100
fd5_prog_init(pctx);
101
fd5_emit_init(pctx);
102
103
if (!FD_DBG(NOBLIT))
104
fd5_ctx->base.blit = fd5_blitter_blit;
105
106
pctx = fd_context_init(&fd5_ctx->base, pscreen, primtypes, priv, flags);
107
if (!pctx)
108
return NULL;
109
110
util_blitter_set_texture_multisample(fd5_ctx->base.blitter, true);
111
112
fd5_ctx->vsc_size_mem =
113
fd_bo_new(screen->dev, 0x1000, 0, "vsc_size");
114
115
fd5_ctx->blit_mem =
116
fd_bo_new(screen->dev, 0x1000, 0, "blit");
117
118
fd_context_setup_common_vbos(&fd5_ctx->base);
119
120
fd5_query_context_init(pctx);
121
122
fd5_ctx->border_color_uploader =
123
u_upload_create(pctx, 4096, 0, PIPE_USAGE_STREAM, 0);
124
125
return pctx;
126
}
127
128