Git Product home page Git Product logo

Comments (5)

shnifer avatar shnifer commented on July 21, 2024 3

With SwapInterval(0) (or just without this call at all) I got monstrous 4000-4500 "fps". If I run 4 instances fps drops to ~2500. Just 2 times slower, not 4 (while taking ~80% of CPU)
so performance of my system is not a key. Something is wrong with vsync in my context

from example.

slimsag avatar slimsag commented on July 21, 2024 1
  1. Where did you add the SwapInterval(1) call? Did you make any other modifications?
  2. Does the same happen if you make the same modification to gl41core-cube ?

from example.

dmitshur avatar dmitshur commented on July 21, 2024 1

I can't reproduce on macOS:

image

Perhaps it's an issue that affects Windows only. Or it could be something specific to your system (video card, drivers, etc.).

If you set vsync off with glfw.SwapInterval(0), what FPS do you get with just one cube instance? And multiple cube instances?

Maybe the slowdown you're seeing is just that your video card can't render multiple applications fast enough to maintain 60 FPS. It's a very simple example, so the performance should be good, but it is a possibility that you should verify.

from example.

shnifer avatar shnifer commented on July 21, 2024

i made two small modifications:

  1. SwapInterval(1) before main loop
  2. counter of fps, that print it once per second
	setupScene()
	tick:=time.Tick(time.Second)
	n:=0
	glfw.SwapInterval(1)
	for !window.ShouldClose() {
		select{
		case <-tick:
			log.Println(n)
			n=0
		default:
			n++
		}
		drawScene()
		window.SwapBuffers()
		glfw.PollEvents()
	}

i can not check gl41core-cube now. But problems with gl21-cube are important anyway, while gl2 is used by ebiten (and maybe some other engines)

from example.

ManPython avatar ManPython commented on July 21, 2024

Yes it's some problem with this all - w7x64sp1.
Any progress here?

And next problem is that when moving window then animation is paused.

from example.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.