mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-01 01:33:52 +00:00
vulkan: Fix drawing too many triangles in fullscreenquad
was using a index buffer for triangle list but drawn as strip Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9338>
This commit is contained in:
parent
5ac6d2b635
commit
3232e7a948
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ struct Vertex vertices[] = {
|
|||
};
|
||||
|
||||
gushort indices[] = {
|
||||
0, 1, 2, 0, 2, 3,
|
||||
0, 1, 3, 2,
|
||||
};
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue