AG903ライブラリリファレンス
内容インデックスホーム
Body Source
本文ソース
1: int32_t AG903_PgpMgrSetConfigVRAMBaseAddr(AG903_PgpMgrVRAMInputHandle *handle, void *addr) 2: { 3: 4: if ((handle == NULL) || (handle->id != AG903_PGP_MGR_VRAM_INPUT_HANDLE_ID)) { 5: return -AG903_EINVAL; 6: } 7: 8: 9: if (addr == NULL) { 10: return -AG903_EINVAL; 11: } 12: 13: 14: handle->addr = (uint32_t)addr; 15: handle->is_config_dirty[AG903_PGP_MGR_CONFIG_VI_BASE] = true; 16: handle->is_dirty = true; 17: return AG903_ENONE; 18: }
Copyright (c) 2017-2025 Axell Corporation. All rights reserved.