Commit ef0f2e5b authored by cobyj33's avatar cobyj33 Committed by David Reid

Fix ma_device_config.noClip docs

parent 287881b8
...@@ -7042,7 +7042,7 @@ struct ma_device_config ...@@ -7042,7 +7042,7 @@ struct ma_device_config
ma_uint32 periods; ma_uint32 periods;
ma_performance_profile performanceProfile; ma_performance_profile performanceProfile;
ma_bool8 noPreSilencedOutputBuffer; /* When set to true, the contents of the output buffer passed into the data callback will be left undefined rather than initialized to silence. */ ma_bool8 noPreSilencedOutputBuffer; /* When set to true, the contents of the output buffer passed into the data callback will be left undefined rather than initialized to silence. */
ma_bool8 noClip; /* When set to true, the contents of the output buffer passed into the data callback will be clipped after returning. Only applies when the playback sample format is f32. */ ma_bool8 noClip; /* When set to true, the contents of the output buffer passed into the data callback will not be clipped after returning. Only applies when the playback sample format is f32. */
ma_bool8 noDisableDenormals; /* Do not disable denormals when firing the data callback. */ ma_bool8 noDisableDenormals; /* Do not disable denormals when firing the data callback. */
ma_bool8 noFixedSizedCallback; /* Disables strict fixed-sized data callbacks. Setting this to true will result in the period size being treated only as a hint to the backend. This is an optimization for those who don't need fixed sized callbacks. */ ma_bool8 noFixedSizedCallback; /* Disables strict fixed-sized data callbacks. Setting this to true will result in the period size being treated only as a hint to the backend. This is an optimization for those who don't need fixed sized callbacks. */
ma_device_data_proc dataCallback; ma_device_data_proc dataCallback;
...@@ -8626,8 +8626,8 @@ then be set directly on the structure. Below are the members of the `ma_device_c ...@@ -8626,8 +8626,8 @@ then be set directly on the structure. Below are the members of the `ma_device_c
callback will write to every sample in the output buffer, or if you are doing your own clearing. callback will write to every sample in the output buffer, or if you are doing your own clearing.
noClip noClip
When set to true, the contents of the output buffer passed into the data callback will be clipped after returning. When set to false (default), the When set to true, the contents of the output buffer are left alone after returning and it will be left up to the backend itself to decide whether or
contents of the output buffer are left alone after returning and it will be left up to the backend itself to decide whether or not the clip. This only not to clip. When set to false (default), the contents of the output buffer passed into the data callback will be clipped after returning. This only
applies when the playback sample format is f32. applies when the playback sample format is f32.
noDisableDenormals noDisableDenormals
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment