This document summarizes a presentation about the challenges of Drupal's rendering system and a proposed object-oriented alternative. The current system uses arrays and complex procedural functions that are difficult to work with. The presentation proposes moving to an object-oriented model using a builder pattern to construct render objects and decorators to add preprocessing/processing in a more accessible and alterable way. This could help address current issues like fields being inaccessible to templates and improve performance. A proof-of-concept implementation was planned to test these ideas.