The Wayback Machine - https://web.archive.org/web/20201113044129/https://github.com/topics/windows
Skip to content
#

Windows

windows logo

Windows is Microsoft's GUI-based operating system. It is known for its graphical display and is designed to be user-friendly.

Here are 12,652 public repositories matching this topic...

benjamingr
benjamingr commented Nov 10, 2020

In AbortController/AbortSignal it is possible to construct an AbortSignal without a controller (but shouldn't be):

> var c = new AbortController();
> new c.signal.constructor()
AbortSignal { aborted: false }

Correct behavior:

> var c = new AbortController();
new c.signal.constructor()
TypeError: Illegal Constructor

This should be a relatively simple fix b

jkazma-logisk
jkazma-logisk commented Jul 3, 2020

Similar to #1196

Issue details

If a game is paused for a long time, after resuming, Gdx.graphics.getDeltaTime() will give the delta of the entire pause duration. This causes freeze/stutter on resume as the game tries to process possibly hours worth of delta. This was fixed for the android version but not for iOS which makes it inconsistent across backends.

Version of LibGDX an

bnoordhuis
bnoordhuis commented Sep 28, 2020

See: https://illumos.org/man/5/epoll

Idea: move logic from src/unix/linux-core.c to src/unix/epoll.c and share that between Linux and Illumos.

Motivation:

  • removes 250-300 lines of code from src/unix/sunos.c
  • switches to much more battle-hardened code
  • makes libuv more efficient because it no longer has to accommodate this event ports quirk:
diff --git a/src/unix/core.c b/s

Created by Microsoft Corporation

Released November 20, 1985

Organization
Microsoft
Website
www.microsoft.com/en-us/windows
Wikipedia
Wikipedia
You can’t perform that action at this time.