mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
radv: move radv_prim_vertex_count to si_cmd_buffer.c
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28526>
This commit is contained in:
parent
74ac72ceb2
commit
d058264f55
2 changed files with 5 additions and 5 deletions
|
|
@ -2193,11 +2193,6 @@ bool radv_enable_rt(const struct radv_physical_device *pdev, bool rt_pipelines);
|
|||
|
||||
bool radv_emulate_rt(const struct radv_physical_device *pdev);
|
||||
|
||||
struct radv_prim_vertex_count {
|
||||
uint8_t min;
|
||||
uint8_t incr;
|
||||
};
|
||||
|
||||
enum radv_pipeline_type {
|
||||
RADV_PIPELINE_GRAPHICS,
|
||||
RADV_PIPELINE_GRAPHICS_LIB,
|
||||
|
|
|
|||
|
|
@ -780,6 +780,11 @@ radv_write_guardband(struct radeon_cmdbuf *cs, int count, const VkViewport *view
|
|||
radeon_emit(cs, fui(discard_x));
|
||||
}
|
||||
|
||||
struct radv_prim_vertex_count {
|
||||
uint8_t min;
|
||||
uint8_t incr;
|
||||
};
|
||||
|
||||
static inline unsigned
|
||||
radv_prims_for_vertices(struct radv_prim_vertex_count *info, unsigned num)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue