Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 462f0fa

Browse files
committed
PR
1 parent 33a0423 commit 462f0fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

impeller/toolkit/glvk/trampoline.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,10 @@ bool Trampoline::BlitTextureOpenGLToVulkan(
251251
};
252252

253253
static constexpr const VertexData kVertData[] = {
254-
{Point{-1, -1}, Point{0, 0}}, // bottom left
255-
{Point{-1, +1}, Point{0, 1}}, // top left
256-
{Point{+1, +1}, Point{1, 1}}, // top right
257-
{Point{+1, -1}, Point{1, 0}}, // bottom right
254+
{Point{-1, -1}, Point{0, 1}}, // bottom left
255+
{Point{-1, +1}, Point{0, 0}}, // top left
256+
{Point{+1, +1}, Point{1, 0}}, // top right
257+
{Point{+1, -1}, Point{1, 1}}, // bottom right
258258
};
259259

260260
// This is tedious but we assume no vertex array objects (VAO) are available

0 commit comments

Comments
 (0)