JDK-8342046 : Avoid creating transient buffers for data
  • Type: Sub-task
  • Component: javafx
  • Sub-Component: graphics
  • Affected Version: internal
  • Priority: P3
  • Status: Open
  • Resolution: Unresolved
  • OS: os_x
  • Submitted: 2024-10-14
  • Updated: 2024-10-15
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
internalUnresolved
Description
Currently we create transient buffers when argument buffer overflows.
We allocate as max as 30 mb transient memory per command buffer.
Creating these small buffers repeatedly affects the rendering performance.
Instead the memory should be allocate before and re-used.