The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

d/ns: Remove unused file

-28
-28
src/xrt/drivers/north_star/distortion/ns_distortion.c
··· 1 - // Copyright 2020, Collabora, Ltd. 2 - // Copyright 2020, Nova King. 3 - // SPDX-License-Identifier: BSL-1.0 4 - /*! 5 - * @file 6 - * @brief North Star HMD code. 7 - * @author Nova King <technobaboo@gmail.com> 8 - * @author Jakob Bornecrantz <jakob@collabora.com> 9 - * @ingroup drv_ns 10 - */ 11 - 12 - 13 - #include <math.h> 14 - #include <stdio.h> 15 - #include <unistd.h> 16 - #include <stdlib.h> 17 - #include <string.h> 18 - #include <assert.h> 19 - 20 - #include "../ns_hmd.h" 21 - 22 - void 23 - ns_display_uv_to_render_uv(struct ns_uv display_uv, 24 - struct ns_uv *render_uv, 25 - struct ns_eye eye) 26 - { 27 - std::map<float, std::map<float, struct ns_uv> >::iterator outerIter; 28 - }