mirror of https://github.com/stella-emu/stella.git
Tuning, TODO
This commit is contained in:
parent
2da0ffa2f5
commit
0c67bff939
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
* Reimplement target FPS mode
|
* Reimplement target FPS mode
|
||||||
* Fixup OpenGL sync, ensure that FB only rerenders after a frame has been generated
|
* Fixup OpenGL sync, ensure that FB only rerenders after a frame has been generated
|
||||||
|
* Add GUI for new audio parameters (prebuffer fragment count, resampling quality)
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
namespace {
|
namespace {
|
||||||
constexpr uInt32 AUDIO_HALF_FRAMES_PER_FRAGMENT = 1;
|
constexpr uInt32 AUDIO_HALF_FRAMES_PER_FRAGMENT = 1;
|
||||||
constexpr uInt32 QUEUE_CAPACITY_SAFETY_FACTOR = 2;
|
constexpr uInt32 QUEUE_CAPACITY_SAFETY_FACTOR = 2;
|
||||||
constexpr uInt32 PREBUFFER_FRAGMENT_COUNT = 4;
|
constexpr uInt32 PREBUFFER_FRAGMENT_COUNT = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
Loading…
Reference in New Issue