@@ -7,8 +7,8 @@ API itself is detailed at length in the ANARI specification.
77
88The primary function of this library is to dispatch
99[ ANARI C API function calls] ( include/anari/anari.h ) to the corresponding ANARI
10- devcie implementing the API (designated by an ` ANARIDevice ` handle in the
11- functioin signature). There are two core concepts that implementations must
10+ device implementing the API (designated by an ` ANARIDevice ` handle in the
11+ function signature). There are two core concepts that implementations must
1212implement, along with optional additional tools which can aid in implementing
1313various ANARI features.
1414
@@ -34,9 +34,9 @@ create an instance of `LibraryImpl`. Implementations should use the
3434` ANARI_DEFINE_LIBRARY_ENTRYPOINT ` macro at the bottom of ` LibraryImpl.h ` to
3535define this entrypoint function, where it is necessary to match the first macro
3636argument with ` [name] ` in the physical shared library file. For example, the
37- provided [ ` helide ` ] ( ../helide ) device on linux compiles into the shared library
37+ provided [ ` helide ` ] ( ../devices/ helide ) device on linux compiles into the shared library
3838` libanari_library_helide.so ` , and ` helide ` is the first argument to
39- ` ANARI_DEFINE_LIBRARY_ENTRYPOINT ` , as seen [ here] ( ../helide/HelideLibrary.cpp ) .
39+ ` ANARI_DEFINE_LIBRARY_ENTRYPOINT ` , as seen [ here] ( ../devices/ helide/HelideLibrary.cpp ) .
4040
4141It is possible to directly construct a device if client applications directly
4242links your library itself, but it is highly recommended to always provide the
@@ -110,5 +110,5 @@ example of how these components all go together.
110110
111111Note that all core spec extensions are defined in a collection of
112112[ JSON files] ( ../../code_gen/api ) that are referenced in the downstream JSON
113- definitions. It is recommened to copy an existing JSON definitions file and
113+ definitions. It is recommended to copy an existing JSON definitions file and
114114modify it accordingly.
0 commit comments