10#if defined(_WIN32) | defined(__ORBIS__) | defined(__PROSPERO__)
11#define SG_DYN __declspec(dllexport)
14#define SG_DYN __attribute__ ((visibility ("default")))
25#define SG_ARRAY_COUNT(arr) (sizeof(arr) / sizeof(arr[0]))
94 switch ( audio_sample_rate ) {
void(* SG_LoggingCallback)(const char *message)
Callback that will be called by an Engine to output log messages.
SG_AudioSampleType
Enum of audio sample types.
@ SG_AUDIO_INT_32
32 bit integer
@ SG_AUDIO_FLOAT_32
32 bit float (IEEE 745 single precision binary32)
@ SG_AUDIO_INT_16
16 bit integer
unsigned long int sg_uniqueid
SG_AnimationNodeType
Enum of animation node types.
SG_AudioSampleRate
Enum of audio sample rates.
@ SG_AUDIO_44_1_KHZ
44.1 kHz
static unsigned int get_audio_sample_rate(SG_AudioSampleRate audio_sample_rate)
Function to convert SG_AudioSampleRate into an integer.
SG_LoggingLevel
Enum for logging level.
@ SG_LOGLEVEL_NONE
No logging enabled, default.
@ SG_LOGLEVEL_DEBUG
All information will be logged.
@ SG_LOGLEVEL_ERROR
Only errors will be logged.
Structure containing an animation node.
SG_AnimationNodeType type
Type of the node.
float * channel_values
Current values of the animation channels.
const char ** channel_names
Names of the animation channels.
sg_size num_channels
Number of animation channels.
const char * name
Unique name of the node.