Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
0dea877a
Commit
0dea877a
authored
Aug 04, 2011
by
Ryan C. Gordon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some FIXMEs.
parent
26f05bd0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
SDL_sysaudio.h
src/audio/SDL_sysaudio.h
+3
-1
SDL_qsa_audio.c
src/audio/qsa/SDL_qsa_audio.c
+1
-0
No files found.
src/audio/SDL_sysaudio.h
View file @
0dea877a
...
@@ -45,9 +45,11 @@ typedef struct SDL_AudioDriverImpl
...
@@ -45,9 +45,11 @@ typedef struct SDL_AudioDriverImpl
void
(
*
UnlockDevice
)
(
_THIS
);
void
(
*
UnlockDevice
)
(
_THIS
);
void
(
*
Deinitialize
)
(
void
);
void
(
*
Deinitialize
)
(
void
);
/* !!! FIXME: add pause(), so we can optimize instead of mixing silence. */
/* Some flags to push duplicate code into the core and reduce #ifdefs. */
/* Some flags to push duplicate code into the core and reduce #ifdefs. */
int
ProvidesOwnCallbackThread
;
int
ProvidesOwnCallbackThread
;
int
SkipMixerLock
;
int
SkipMixerLock
;
/* !!! FIXME: do we need this anymore? */
int
HasCaptureSupport
;
int
HasCaptureSupport
;
int
OnlyHasDefaultOutputDevice
;
int
OnlyHasDefaultOutputDevice
;
int
OnlyHasDefaultInputDevice
;
int
OnlyHasDefaultInputDevice
;
...
...
src/audio/qsa/SDL_qsa_audio.c
View file @
0dea877a
...
@@ -113,6 +113,7 @@ QSA_CheckBuggyCards(_THIS, unsigned long checkfor)
...
@@ -113,6 +113,7 @@ QSA_CheckBuggyCards(_THIS, unsigned long checkfor)
return
0
;
return
0
;
}
}
/* !!! FIXME: does this need to be here? Does the SDL version not work? */
static
void
static
void
QSA_ThreadInit
(
_THIS
)
QSA_ThreadInit
(
_THIS
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment