Skip to content

Commit

Permalink
Add extension headers
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsided committed May 11, 2024
1 parent 5867c25 commit c169f04
Show file tree
Hide file tree
Showing 6 changed files with 6,611 additions and 4,857 deletions.
2 changes: 2 additions & 0 deletions openvx-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ fn main() {
.allowlist_recursively(true)
// Doesn't appear to work right now, but maybe some day ...
.generate_comments(true)
// Bonus flavors.
.enable_cxx_namespaces()
// Suppress linter warnings.
.raw_line("#![allow(non_snake_case)]")
.raw_line("#![allow(non_camel_case_types)]")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ enum vx_bidirectional_enum_e
* \param [in,out] accum The accumulation image in <tt>\ref VX_DF_IMAGE_S16</tt>.
* \ingroup group_vision_function_accumulate
* \return <tt>\ref vx_node</tt>.
* \retval vx_node A node reference. Any possible errors preventing a successful creation should be checked using <tt>\ref vxGetStatus</tt>
* \retval vx_node A node reference. Any possible errors preventing a successful creation should be checked using <tt>\ref vxGetStatus</tt>
*/
VX_API_ENTRY vx_node VX_API_CALL vxAccumulateImageNode(vx_graph graph, vx_image input, vx_image accum);

Expand All @@ -60,7 +60,7 @@ VX_API_ENTRY vx_node VX_API_CALL vxAccumulateImageNode(vx_graph graph, vx_image
* \param [in,out] accum The <tt>\ref VX_DF_IMAGE_U8</tt> accumulation image.
* \ingroup group_vision_function_accumulate_weighted
* \return <tt>\ref vx_node</tt>.
* \retval vx_node A node reference. Any possible errors preventing a successful creation should be checked using <tt>\ref vxGetStatus</tt>
* \retval vx_node A node reference. Any possible errors preventing a successful creation should be checked using <tt>\ref vxGetStatus</tt>
*/
VX_API_ENTRY vx_node VX_API_CALL vxAccumulateWeightedImageNodeX(vx_graph graph, vx_image input, vx_float32 alpha, vx_image accum);

Expand All @@ -71,7 +71,7 @@ VX_API_ENTRY vx_node VX_API_CALL vxAccumulateWeightedImageNodeX(vx_graph graph,
* \param [in,out] accum The accumulation image in <tt>\ref VX_DF_IMAGE_S16</tt>.
* \ingroup group_vision_function_accumulate_square
* \return <tt>\ref vx_node</tt>.
* \retval vx_node A node reference. Any possible errors preventing a successful creation should be checked using <tt>\ref vxGetStatus</tt>
* \retval vx_node A node reference. Any possible errors preventing a successful creation should be checked using <tt>\ref vxGetStatus</tt>
*/
VX_API_ENTRY vx_node VX_API_CALL vxAccumulateSquareImageNodeX(vx_graph graph, vx_image input, vx_uint32 shift, vx_image accum);
#endif
Expand Down
2 changes: 1 addition & 1 deletion openvx-sys/include/1.3.1/extensions/VX/vx_khr_pipelining.h
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ typedef struct _vx_event {
VX_API_ENTRY vx_status VX_API_CALL vxWaitEvent(vx_context context, vx_event_t *event, vx_bool do_not_block);

/*! \brief Enable event generation
*
*
* Depending on the implementation, events may be either enabled or disabled by default.
*
* \param context [in] OpenVX context
Expand Down
1 change: 0 additions & 1 deletion openvx-sys/include/1.3.1/extensions/VX/vx_khr_swap_move.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* limitations under the License.
*/


#ifndef _OPENVX_SWAP_MOVE_H_
#define _OPENVX_SWAP_MOVE_H_

Expand Down
Loading

0 comments on commit c169f04

Please sign in to comment.