Skip to content

Commit e896343

Browse files
authored
Merge pull request #10935 from Jordyfel/patch-1
Remove outdated 2D batching note
2 parents f18041e + 9b20054 commit e896343

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tutorials/performance/gpu_optimization.rst

+1-5
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,11 @@ of these expensive state changes.
4646

4747
In 2D, the costs of treating each item individually can be prohibitively high -
4848
there can easily be thousands of them on the screen. This is why 2D *batching*
49-
is used with OpenGL-based rendering methods. Multiple similar items are grouped
49+
is used. Multiple similar items are grouped
5050
together and rendered in a batch, via a single draw call, rather than making a
5151
separate draw call for each item. In addition, this means state changes,
5252
material and texture changes can be kept to a minimum.
5353

54-
Vulkan-based rendering methods do not use 2D batching yet. Since draw calls are
55-
much cheaper with Vulkan compared to OpenGL, there is less of a need to have 2D
56-
batching (although it can still be beneficial in some cases).
57-
5854
3D batching
5955
~~~~~~~~~~~
6056

0 commit comments

Comments
 (0)