server icon indicating copy to clipboard operation
server copied to clipboard

HTML producer High GPU usage

Open sirfnomi opened this issue 2 years ago • 0 comments

Current behavior

Is it normal for a static Hello World text HTML template to use approximately 20% GPU (NVIDIA Quadro K4000 3 GB) in 1080i5000 channel ?

Steps to reproduce

<!DOCTYPE html>
<html>
<head>
    <style type="text/css">
        body{
            background: transparent;
            overflow: hidden;
        }
        #main {
            position: absolute;
            top: 50%;
            left: 40%;
            color: #fff;
            font-size: 4em;
        }
    </style>
    <script>function play(str){}function stop(){}function update(str){}</script>
</head>
<body>
    <div id="main">
        HELLO WORLD
    </div>
</body>
</html>

Environment

  • Commit: [master 2021-12-01 build]
  • Server version: v2.3.3
  • Operating system: Windows 10

sirfnomi avatar Mar 26 '22 11:03 sirfnomi