AG903ライブラリリファレンス
内容インデックスホーム
Body Source
本文ソース
1: int32_t AG903_PgpMgrEnableConfigOutputColorMask(AG903_PgpMgrPipelineHandle *handle, _Bool red, _Bool green, _Bool blue) 2: { 3: 4: if ((handle == NULL) || (handle->id != AG903_PGP_MGR_PIPELINE_HANDLE_ID) || ((red == false) && (green == false) && (blue == false))) { 5: return -AG903_EINVAL; 6: } 7: 8: 9: handle->output_red_enable = red; 10: handle->output_green_enable = green; 11: handle->output_blue_enable = blue; 12: handle->is_config_dirty[AG903_PGP_MGR_CONFIG_OUTPUT_COLOR_MASK] = true; 13: handle->is_dirty = true; 14: return AG903_ENONE; 15: }
Copyright (c) 2017-2025 Axell Corporation. All rights reserved.