You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -90,15 +90,15 @@ To profile:
90
90
### Remix API
91
91
92
92
If there's an intent to use the Remix Renderer in projects with *available* source code, Direct3D 9 API can be utilized, since Remix's `d3d9.dll` implements the Direct3D 9 API.
93
-
Alternatively, Remix API can be used to programmatically pass the game data to the Remix Renderer, with *or* instead of Direct3D API. [Click for more info.](/tests/rtx/apps/README.md)
93
+
Alternatively, Remix API can be used to programmatically pass the game data to the Remix Renderer, with *or* instead of Direct3D API. [Click for more info.](/documentation/RemixSDK.md)
Copy file name to clipboardexpand all lines: documentation/RemixSDK.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ After a successful build, the necessary SDK files will be located in the public/
38
38
As with other rendering engines, there are common steps of
39
39
initialiazation, resource registration (meshes, materials, lights), and submitting the said resources to each frame to be rendered.
40
40
41
-
[remixapi_example_c.c](RemixAPI_C/remixapi_example_c.c) contains a minimal example in C to render a path traced triangle using the Remix API.
41
+
[remixapi_example_c.c](/tests/rtx/apps/RemixAPI_C/remixapi_example_c.c) contains a minimal example in C to render a path traced triangle using the Remix API.
42
42
43
43
44
44
<details>
@@ -112,7 +112,7 @@ Material:
112
112
* To register, call `remixapi_Interface::CreateMaterial` specifying `remixapi_MaterialInfo`, but `.pNext` must be a pointer to one of:
113
113
*`remixapi_MaterialInfoOpaqueEXT` -- for a generic material
114
114
*`remixapi_MaterialInfoTranslucentEXT` -- for a glass material
115
-
* For the default values, corresponding default constructors can be examined in the C++ wrapper [remix.h](../../../public/include/remix/remix.h)
115
+
* For the default values, corresponding default constructors can be examined in the C++ wrapper [remix.h](/public/include/remix/remix.h)
116
116
**Note: at the time of writing, the material API is still not refined to work with non-file image data, and overall structure just reflects the internal representation of materials, which might be not as simple to use. The primary subject to change.*
117
117
118
118
Light:
@@ -144,7 +144,7 @@ Push a camera, mesh instances and lights to define a scene for the *current* fra
144
144
145
145
*Note: to set `rtx.conf` options at runtime, use `remixapi_Interface::SetConfigVariable`*
146
146
147
-
*Note: [remixapi_example_c.c](RemixAPI_C/remixapi_example_c.c) contains all the steps listed above, and should draw a triangle.*
147
+
*Note: [remixapi_example_c.c](/tests/rtx/apps/RemixAPI_C/remixapi_example_c.c) contains all the steps listed above, and should draw a triangle.*
0 commit comments