You are currently viewing a new version of our website. To view the old version click .
Computers
  • Article
  • Open Access

12 September 2025

Supersampling in Render CPOY: Total Annihilation

and
Department of Electrical and Power Engineering, Polytechnic University of Timisoara, 300223 Timișoara, Romania
*
Authors to whom correspondence should be addressed.
This article belongs to the Section Human–Computer Interactions

Abstract

This paper tackles a significant problem in gaming graphics: balancing visual fidelity with performance in real time. The article introduces CPOY SR (Continuous Procedural Output Yielder for Scaling Resolution), a dynamic resolution scaling algorithm designed to enhance both performance and visual quality in real-time gaming. Unlike traditional supersampling and anti-aliasing techniques that suffer from fixed settings and hardware limitations, CPOY SR adapts resolution during gameplay based on system resources and user activity. The method is implemented and tested in an actual game project, not just theoretically proposed. The proposed method overcomes these by adjusting resolution dynamically during gameplay. One strong feature is that it works across diverse systems, from low-end laptops to high-end machines. The algorithm utilizes mathematical constraints like Mathf.Clamp to ensure numerical robustness during scaling and avoids manual reconfiguration. Testing was carried out across multiple hardware configurations and resolutions (up to 8K); the approach demonstrated consistent visual fidelity with optimized performance. The research integrates visual rendering, resolution scaling, and anti-aliasing techniques, offering a scalable solution for immersive gameplay. This article outlines the key components and development phases that contribute to the creation of this engaging and visually impressive gaming experience project.

1. Introduction

Digital games have transformed the entertainment industry and are increasingly integrated into educational and technological domains. Their interactive nature enhances user engagement and fosters cognitive development, such as flexible thinking and strategic problem-solving. Technological advancements have propelled these digital experiences to new heights [1,2,3,4], offering both functional applications and opportunities for learning and personal growth.
A feature that distinguishes digital games is interactivity; users can make decisions and actively engage within virtual environments. This dynamic interaction cultivates adaptable thinking, enabling players to navigate complex scenes and apply diverse problem-solving strategies [5,6]. In such environments, adapting requires environment cues. These challenges are amplified by intricate design, elegant visuals and sounds [4,5].
Supersampling is a widely adopted method to reduce aliasing and improve visual quality [7,8,9]. However, traditional implementations rely on fixed settings and suffer from performance bottlenecks and poor hardware adaptability. Figure 1 illustrates a supersampled scene in the developed game, showing enhanced detail from 1920 × 1080 to 6000 × 6000 resolution. A key limitation in existing scaling algorithms is their inability to adapt in real time to changing performance needs. This often results in degraded visuals or unstable frame rates in demanding environments. To address this, we propose CPOY SR (Continuous Procedural Output Yielder for Scaling Resolution), a dynamic resolution scaling algorithm that adjusts resolution during gameplay based on system load, without requiring manual intervention.
Figure 1. Original source—difference on supersampling resolution scaling, the method applied at a screen of 1920 × 1080, increased to one of a resolution of 6000 × 6000 pixels on screen.
The core key contributions include a dynamic resolution scaling technique using Mathf.Clamp to ensure numerical stability, evaluation across multiple hardware configurations and resolutions (2K, 4K), consistent visual fidelity and improved performance in real-time use.
This paper is structured as follows: Section 2 reviews prior work; Section 3 presents the algorithm; Section 4 describes the experimental results; Section 5 concludes with directions for future work.
Traditional rendering samples pixels at native resolution, often introducing artifacts in high-contrast scenes. Supersampling mitigates this by averaging multiple samples per pixel, then downscaling, resulting in smoother images. While resource-intensive, modern hardware and optimization techniques make it feasible. Our goal is to maintain superior graphics at a minimum of 30 FPS, leveraging Shader 5.0. To optimize performance, occlusion culling was implemented as well; only objects visible in the camera’s view are rendered, reducing memory load during Garbage Collection (GC).

3. Proposed Method

The advantage of using “Scaling Resolution” is the ability to both decrease and increase resolution simultaneously without exiting the game. This allows for scaling up to a resolution of 4K or higher. As it increases procedurally, it fixes the appropriate resolution for each screen.
In Figure 2, from a fixed square matrix resolution of 432 × 768, the process of resolution scaling involves smoothing and interpolating the distribution of pixels on the screen. Scaling this square matrix to fit a different screen resolution involves calculating the appropriate pixel values for the new camera dimensions while maintaining the visual integrity of the original content. Keeping the 432 × 768 resolution, a fixed resolution that will run exactly on every screen, requires fixed dimensions.
Figure 2. Original source—dynamic selection in reconfiguring screen resolution.
Each resolution is different, but with a percentage value of 2× or 3×, as it increases in value (see Table 1, Figure 3). Figure 4 illustrates the proposed algorithm, CPOY SR (Continuous Procedural Output Yielder for Scaling Resolution), for dynamic, real-time resolution scaling. The more detailed the pixel rendered on the screen, the heavier the load on the graphics card memory. In other words, if there are many pixels, the performance will be slower, while if there are fewer pixels, the performance will be smoother. For example, a screen with 1920 × 1080 resolution can run at 5508 × 7972. The resolution closest to ~3840 × 2160 is equal to 4K or even higher. For a laptop screen with a resolution of 1366 × 768, the decimal resolution would be, e.g., 756.3 × 562.1 depending on its screen resolution.
Table 1. Table parameters in the scaling algorithm. Data, integer value and the resolution.
Figure 3. Original source—reconfiguring screen parameters in real time.
Figure 4. Original source—C# “SetResolution()” function from the CPOY SR and the pseudocode.
In Figure 4, the algorithm shows that the Mathf.Clamp function plays a role in maintaining numerical stability. This function ensures that a given value remains within a specified minimum and maximum range, effectively preventing computational artifacts caused by values exceeding expected bounds. When applied to scaling factors on resolution dimensions, Mathf.Clamp helps preserve image fidelity by restricting scale adjustments to a defined safe range, thereby avoiding distortions and performance degradation that may arise from extreme upscaling or downscaling. This is particularly important in adaptive systems where resolution dynamically changes in response to conditions via user input.
One of the strongest features is the ability to function across diverse hardware from low-end laptops to high-resolution displays, making it accessible and effective across diverse computing environments. Users often operate on a wide spectrum of devices with varying GPU capabilities, memory limits, and processing power. By dynamically adjusting resolution scaling parameters in real time, the CPOY SR algorithm ensures smooth gameplay and stable frame rates even on entry-level systems, without significantly compromising visual fidelity. Furthermore, on high-performance systems, the algorithm leverages available hardware resources to maximize graphical detail and responsiveness. This cross-platform robustness reduces the need for manual configuration or hardware-specific optimization, thereby widening the accessibility for developers and end-users alike.
Bilinear and bicubic filters are popular choices for their ability to interpolate pixel values and create smoother images [22]. While there are tempting indicators to utilize them in image filters on screen, their application in the context of sizing the entire screen poses certain downscale portions. The primary issue stems from the fact that these filters are primarily used to enhance image quality (sharpening effect) by introducing intermediate pixel values. Using them involves reducing the number of pixels on screen, and the interpolation performed by these filters might not be well-suited for such a task. The filters may blur or misrepresent details, leading to a loss of clarity and visual fidelity.
The challenge we are facing is related to the inherent limitations when it comes to scaling significantly. The algorithms listed are commonly employed for resizing images, each with its unique characteristics and suitability for specific scenarios. Nearest-neighbor interpolation might lead to blocky artifacts, while bicubic interpolation tends to be smoother but might result in blurring.
In achieving precise native pixel resolution for this project, it was worth comparing and exploring different techniques. The impact of the source image characteristics, experimenting with different combinations and parameters, did help in finding out the most suitable approach for the algorithm’s use case.
Inaccurate pixel values can introduce noticeable discrepancies in the interpolated results, leading to color banding, aliasing, or other undesirable effects.
To address these challenges, advanced interpolation techniques often incorporate higher-order polynomials or more sophisticated algorithms to enhance the accuracy of pixel estimation, particularly in regions where visual fidelity is critical.
Dynamic selection for different resolutions empowers users to seamlessly switch between these resolutions based on their specific needs or preferences, fostering flexibility and customization in how information is presented on the screen—an expansion in screen, a more extensive canvas to work with.
The dynamic capability implemented is valuable in various contexts, such as graphic design, gaming, or multimedia content creation, where users require different resolutions for optimal performance in visual clarity.
The project aim, to support multiple PC hardware configurations, ensuring compatibility with a range of display devices, from compact laptops to large, high-resolution monitors. This adaptability is very important in modern computing environments, where users interact with various devices interchangeably. In practical terms, dynamic resolution in reconfiguring screen resolution promotes a user-friendly experience as it eliminates the need for hard manual adjustments and simplifies the process. Whether engaging in detailed photo editing, immersive gaming, or simply managing multiple applications concurrently, the ability to dynamically select resolutions enhances productivity and fosters a more personalized and efficient computing environment.
One may encounter challenges such as configuring the camera within specified dimensions and fields of view that need adjustments. The field-of-view function determines the extent of the observable environment through the camera lens, and fine-tuning this parameter for different desired perspectives is necessary.
To address camera size parameters, resolution needs to be correctly reconfigured; it is problematic if the screen is too large in vertical view because objects will be seen in inaccurate dimensions, and similarly so in cases of horizontal view. It is therefore necessary to specify the number of pixels along both the X and Y axes.

4. Experiments

These experiments involved testing on various hardware configurations, including different PCs and laptops, to ensure optimal performance and compatibility, to identify potential bottlenecks related to hardware-specific issues. It was important to deliver a seamless and immersive experience, requiring rigorous testing with different game resources, graphics rendering capabilities, and overall efficiency levels, taking into account input devices and system requirements. This comprehensive approach aimed to create a project that not only met technical standards but also provided a satisfying and enjoyable gameplay experience for a diverse audience and satisfied the need for refinement, ensuring that the algorithm would perform optimally on a variety of hardware setups while maintaining a high level of visual and interactive quality [23,24,25,26].
Testing RAM behavior during resolution scaling, specifically involving different resolutions such as 2K and 4K, and beyond, involves examining how efficiently the RAM handles the increased workload associated with rendering content at higher resolutions.
For instance, in scaling a 1080 pixels image to a 2K display, the algorithm did not require much additional processing power to ensure a clear and sharp image. For higher resolutions, such as 4K (3840 × 2160 pixels), the algorithm is still stable and does not require much memory to store graphical data for smooth rendering. Influenced by various factors during testing, its performance under different conditions, including resolution changes, provides valuable insights into the algorithm’s capabilities.
To ensure the reliability of the findings, each experiment was conducted under controlled conditions and repeated ten times across all hardware configurations (Intel i3-4005U, Intel i5-4570, and Intel i9-10900X). The system was tested with no other resource-intensive applications running in the background, just the application, in game with the scene loaded. The performance metrics, including FPS, were recorded over a 20 s duration. To present the most stable and representative data, the figures and the accompanying analysis in this paper use the average values from these repeated tests. This approach allows us to minimize the impact of any transient system fluctuations and provide a robust assessment of the CPOY SR algorithm’s performance across different hardware setups.
The figures present a comparative analysis of in game resource utilization across three distinct rendering resolutions: standard (1366 × 768), 1K, and 2K. The time graphs in the first parts of the figures illustrate the dynamic processing workload throughout the execution in game.
Figure 5 on 1K and 2K Resolutions: Experiments on a laptop with an Intel i3-4005U CPU showed that scaling from the standard 1366 × 768 resolution to 1K and then 2K increased RAM usage. The RAM usage increased from 42% at standard resolution to 48% at 1K, and then to 52% at 2K, with a corresponding change in CPU core load.
Figure 5. Original source—measuring screen pixels in zoom mode on screen, performance cases and view graphics, running on a screen of 1366 × 768, laptop CPU Intel i3-4005U.
Figure 6 and Figure 7 on 4K and 8K Resolutions: A test on a PC with an Intel i5-4570 CPU running on a 3840 × 2160 screen showed the impact of scaling to 4K and 8K. RAM usage increased from 5626 MB to 5802 MB at 4K and to 6628 MB at 8K, out of 32,659 MB total RAM. Similarly, a more powerful PC with an Intel i9-10900X CPU running the same 3840 × 2160 screen saw RAM usage increase from 5844 MB to 5984 MB at 4K and to 6555 MB at 8K, out of 97,982 MB total RAM.
Figure 6. Original source—measuring screen pixels in zoom mode on screen, performance cases and view graphics, running on a screen of 3840 × 2160, computer PC CPU Intel i5-4570.
Figure 7. Original source—measuring screen pixels in zoom mode on screen, performance cases and view graphics, running on a screen of 3840 × 2160, computer PC CPU Intel i9-10900X.
Regarding FPS on an Intel i3-4005U laptop, the average FPS at the native resolution (1366 × 768) was 60 FPS. When the resolution was scaled up to 1K, the average FPS dropped to 23.9, and at 2K, it further decreased to 12.3. On a medium-end PC with an Intel i5-4570 CPU, the average FPS was 60 at the native resolution (3840 × 2160), 44.7 at 4K, and 17.3 at 8K. This data quantifies the performance trade-offs at higher resolutions, moving beyond qualitative observations of stability. The goal of maintaining a minimum of 30 FPS was achieved for resolutions up to 4K on the high-end PC with the Intel i9-10900X CPU, which had an average FPS of 59.6 at native resolution and 47.6 at 4K. This provides a direct measure of the method’s performance.
The algorithm’s graph latency is described as follows: performance is excellent when latency is <2 ms (blue), very good when latency is <4 ms (dark blue), good when <8 ms (yellow), acceptable when <12 ms (orange), and at the stuttering threshold when >12 ms (red). Although the metric showcase was designed for a specific type of hardware, it also was tested on multiple computers and demonstrated the applicability across various systems. The experimental evaluation was carried out on machines with different configurations to assess the algorithm’s performance and stability. These tests not only confirmed the metric’s expected outcome but also provided valuable insights into its consistency in many practical scenarios, making this a strong candidate for broader deployment and benchmarking purposes.
Resolution scaling algorithms on display can impact processing; the amount of data that needs to be processed stored in the RAM may introduce latency, affecting the responsiveness of the game load and potentially impeding the overall gaming experience. These algorithms are responsible for dynamically adjusting the resolution based on the rendering workload and available resources, which can significantly impact processing requirements and memory utilization.
Factors such as bad game memory load introduces additional computational overhead; they can result in a degradation of visual fidelity. Finding the right balance between resolution, texture quality, and other visual parameters becomes a delicate optimization process, and improper configurations may lead to suboptimal performance or visual artifacts.
Figure 8 provides a quantitative analysis of image quality. The image quality test was conducted on a PC with an Intel i5-4570 CPU running on a 3840 × 2160 screen. The results show a Peak Signal-to-Noise Ratio (PSNR) of 21.16 dB and a Structural Similarity Index (SSIM) of 0.9675. The PSNR metric measures the ratio between the maximum possible power of a signal and the power of corrupting noise that affects the fidelity of its representation. In simpler terms, a higher PSNR value indicates a lower amount of noise or degradation in the image. The SSIM metric, on the other hand, evaluates image quality based on perceived changes in structural information, brightness, and contrast. A value close to 1.0 indicates a very high degree of similarity between the test image and the reference image, suggesting minimal loss of visual quality. The high SSIM score of 0.9675 shows that the CPOY SR algorithm maintains the visual integrity of the image even with resolution scaling.
Figure 8. Original source—measuring pixel quality SSIM = 0.9675 and PSNR = 21.16, running on a screen of 3840 × 2160, computer PC CPU Intel i5-4570.
Figure 9 shows the Watt consumption.
Figure 9. Original source—measuring consumption in game, with the application consuming a relatively low amount of power, running on a screen of 3840 × 2160, computer PC CPU Intel i5-4570.

5. Conclusions and Future Work

This article reveals the analysis of a resolution scaling algorithm based on memory load in a multimedia game project. While resolution scaling algorithms are powerful tools for enhancing performance in graphics-intensive applications, they come with trade-offs that need to be adjusted from many different perspectives. The dynamic adjustments introduced by these algorithms can exert notable influences on processing demands, RAM storage requirements, and the overall gaming experience.
Striking the right algorithmic balance on a resolution scale can be an intensive task in a project; adjusting between visual quality and performance is a critical challenge for developers in the evolving landscape of gaming technology. With good optimized algorithms, much more can be achieved.
Thorough testing across a spectrum of use cases, incorporating feedback from scenarios in game and embracing the settings advancements in hardware technology, allows the resolution scaling algorithm to not only exceed the 100% threshold but also enhance visual experience and facilitate optimal performance across a wide range of applications [2,27,28,29].
We considered introducing post-processing, such as denoising images during resolution scaling, but it is a computationally intensive task that often requires significant computational resources and memory. The process involves reducing the noise, artifacts present in the original image, which can be a complex operation that typically involves filtering techniques to estimate pixel values in the image, to differentiate between actual details and noise. There was a concern about memory usage in image denoising during resolution scaling. High-resolution images require a large amount of memory to store and filter afterwards. In addition to these challenges, researchers and engineers often employ optimization techniques, parallel processing, and hardware acceleration to speed up the denoising.
Despite these efforts, denoising remains a resource-intensive task in computational operation. To not sacrifice memory, it was not used and implemented in this project.

Author Contributions

Conceptualization, G.D.S.; methodology, G.D.S.; software, G.D.S.; validation, G.D.S.; formal analysis, G.D.S.; investigation, G.D.S.; resources, G.D.S.; data curation, G.D.S.; writing—original draft preparation, G.D.S.; writing—review and editing, G.D.S.; visualization, G.D.S.; supervision, S.I.R.; project administration, G.D.S.; funding acquisition, G.D.S. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Data Available Statement

The images can be accessed at https://misticalages.gumroad.com/l/RENDERCPOYTOTALANNIHILATION (accessed on 3 September 2025).

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. De Back, T.T.; Tinga, A.M.; Louwerse, M.M. Learning in immersed collaborative virtual environments: Design and implementation. Interact. Learn. Environ. 2023, 31, 5364–5382. [Google Scholar] [CrossRef]
  2. Mengistu, B. Deep-Learning Realtime Upsampling Techniques in Video Games. Sch. Horiz. Univ. Minn. Morris Undergrad. J. 2023, 10, 4. [Google Scholar] [CrossRef]
  3. Araiza-Alba, P.; Keane, T.; Chen, W.S.; Kaufman, J. Immersive virtual reality as a tool to learn problem-solving skills. Comput. Educ. 2021, 164, 104121. [Google Scholar] [CrossRef]
  4. Andersen, F.; King, C.L.; Gunawan, A.A. Audio influence on game atmosphere during various game events. Procedia Comput. Sci. 2021, 179, 222–231. [Google Scholar] [CrossRef]
  5. Kenwright, B. There’s more to sound than meets the ear: Sound in interactive environments. IEEE Comput. Graph. Appl. 2020, 40, 62–70. [Google Scholar] [CrossRef] [PubMed]
  6. Vicencio-Moreira, R.; Mandryk, R.L.; Gutwin, C.; Bateman, S. The effectiveness (or lack thereof) of aim-assist techniques in first-person shooter games. In Proceedings of the SIGCHI Conference on Human Factors in Computing Systems, Toronto, ON, Canada, 26 April–1 May 2014; pp. 937–946. [Google Scholar]
  7. Zhong, Y.; Huo, Y.; Wang, R. Morphological Anti-Aliasing Method for Boundary Slope Prediction. arXiv 2022, arXiv:2203.03870. [Google Scholar] [CrossRef]
  8. Ai, D.; Xue, J.; Wang, M. Multiple-Parallel Morphological Anti-Aliasing Algorithm Implemented in FPGA. Telecom 2022, 3, 526–540. [Google Scholar] [CrossRef]
  9. Grahn, A. An Image and Processing Comparison Study of Antialiasing Methods. Bachelor’s Thesis, Blekinge Institute of Technology, Karlskrona, Sweden, 2016. [Google Scholar]
  10. Shirley, P.; Marschner, S.; Ashikhmin, M. Fundamentals of Computer Graphics, 4th ed.; CRC Press: Boca Raton, FL, USA, 2016; p. 192. [Google Scholar]
  11. Anglada, M.; de Lucas, E.; Parcerisa, J.-M.; Aragón, J.-L.; González, A. Dynamic sampling rate: Harnessing frame coherence in graphics applications for energy-efficient GPUs. J. Supercomput. 2022, 78, 14940–14964. [Google Scholar] [PubMed]
  12. Foley, J.D.; van Dam, A.; Feiner, S.K.; Hughes, J.F. Computer Graphics: Principles and Practice, 2nd ed.; Addison-Wesley: Reading, MA, USA; p. 986.
  13. Zou, J.; Xu, Z.; Wu, S.; Zhou, L. Improved anti-aliasing algorithm based on fast approximate anti-aliasing. In Proceedings of the Fifteenth International Conference on Graphics and Image Processing (ICGIP 2023), Suzhou, China, 10–12 November 2023; SPIE: Bellingham, WA, USA, 2024; Volume 13089, pp. 568–579. [Google Scholar]
  14. Buchta, W. Hardware-Accelerated Super-Resolution. Ph.D. Thesis, Worcester Polytechnic Institute, Worcester, MA, USA, 2025. [Google Scholar]
  15. Guo, D.; Zhang, Y.; Yang, X. Foveated Denoising for Ray Tracing Rendering. IEEE Access 2024, 12, 198015–198027. [Google Scholar] [CrossRef]
  16. Smirnov, L.; Frolov, V.; Galaktionov, V. TIDOAA—A Temporal Anti-aliasing Method with Immutable Dynamic Objects. In Proceedings of the Graphicon-Conference on Computer Graphics and Vision, Ryazan, Russia, 19–22 September 2022; Volume 32, pp. 42–54. [Google Scholar]
  17. Fajardo, M.; Wronski, B.; Salvi, M.; Pharr, M. Stochastic texture filtering. arXiv 2023, arXiv:2305.05810. [Google Scholar] [CrossRef]
  18. Xu, Z.; Luo, Y.; He, D.; Qin, Y.; Wang, X.; Peng, S.; Yao, J. Edge temporal anti-aliasing. In Proceedings of the International Conference on Computer Graphics, Artificial Intelligence, and Data Processing (ICCAID 2022), Guangzhou, China, 23–25 December 2022; SPIE: Bellingham, WA, USA, 2023; Volume 12604, pp. 248–256. [Google Scholar]
  19. Chen, H. The development trend of visual communication design in the internet Era. In Proceedings of the 2022 2nd International Conference on Computer Technology and Media Convergence Design (CTMCD 2022), Dali, China, 13–15 May 2022; Atlantis Press: Dordrecht, The Netherlands, 2022; pp. 156–163. [Google Scholar]
  20. Shi, S.; Hsu, C.H.; Nahrstedt, K.; Campbell, R. Using graphics rendering contexts to enhance the real-time video coding for mobile cloud gaming. In Proceedings of the 19th ACM international conference on Multimedia, Scottsdale, AZ, USA, 28 November–1 December 2011; pp. 103–112. [Google Scholar]
  21. Claypool, M.; Claypool, K.; Damaa, F. The effects of frame rate and resolution on users playing first person shooter games. In Multimedia Computing and Networking 2006; SPIE: Bellingham, WA, USA, 2006; Volume 6071, p. 607101. [Google Scholar]
  22. Zhang, Y.; Wang, Q.; Li, H. Image super-resolution based on bicubic interpolation and deep learning. IEEE Access 2021, 9, 12345–12353. [Google Scholar]
  23. Lau, W.; Santoso, J.S.A.; Ronald, I.; Purwanto, E.S.; Sari, A.C. Using image upscaling methods in digital platforms to reduce internet usage. In Proceedings of the 2022 4th International Conference on Cybernetics and Intelligent System (ICORIS), Medan, Indonesia, 8–9 October 2022; IEEE: New York, NY, USA, 2022; pp. 1–6. [Google Scholar]
  24. Sigitov, A.; Scherfgen, D.; Hinkenjann, A.; Staadt, O. Adopting a game engine for large, high-resolution displays. Procedia Comput. Sci. 2015, 75, 257–266. [Google Scholar] [CrossRef][Green Version]
  25. Chen, H.; Lu, M.; Ma, Z.; Zhang, X.; Xu, Y.; Shen, Q.; Zhang, W. Learned resolution scaling powered gaming-as-a-service at scale. IEEE Trans. Multimed. 2020, 23, 584–596. [Google Scholar] [CrossRef]
  26. Coorg, S.; Teller, S. Real-time occlusion culling for models with large occluders. In Proceedings of the 1997 symposium on Interactive 3D graphics, Providence, RI, USA, 27–30 April 1997; pp. 83–90. [Google Scholar]
  27. Sabri, A.J.; Ball, R.G.; Fabian, A.; Bhatia, S.; North, C. High-resolution gaming: Interfaces, notifications, and the user experience. Interact. Comput. 2007, 19, 151–166. [Google Scholar] [CrossRef]
  28. Binks, D. Dynamic resolution rendering. In Proceedings of the Game Developers Conference (GDC), San Francisco, CA, USA, 28 February–4 March 2011. [Google Scholar]
  29. Mercier, A.; Erasmus, R.; Savani, Y.; Dhingra, M.; Porikli, F.; Berger, G. Efficient neural supersampling on a novel gaming dataset. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Paris, France, 2–3 October 2023; pp. 296–306. [Google Scholar]
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.