Johannes Günther

Results 16 issues of Johannes Günther

Follow-up of #467 and #500. Currently, clipping is global, affecting all objects in the world. For some use cases this is not optimal, or those cannot be achieved at all....

feature

Procedural sun-sky models are a wide-spread and flexible tools to provide natural illumination to scenes and objects or commercial products, complementing point lights ([`KHR_lights_punctual`](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_lights_punctual)) and image-based environment maps (https://github.com/KhronosGroup/glTF/pull/1956).

extension

In the spec we have (bold from me) > The ANARI API is specified as a C99 API in order to provide **compiler-independent linkage** and > ANARI back-end devices are...

this was feedback from the hackathon - ~~when only slider widgets are available, then the absolute `minimum` / `maximum` is of little help and not useful (e.g. for unbounded values...

follow-up to #90 I noticed this difference to the the official spec pdf (and the ones I generate locally) to the pdf in the GA artifact. For example, Chapter 2.2...

infrastructure

- follow-up from https://github.com/KhronosGroup/ANARI-Docs/pull/125#issuecomment-2671357421 - only supporting user-provided instance ids (no implicitly generated ones)?

Reproducer: ``` cpp struct Foo { float x, y; }; Foo foo = { 1.0, 0.0 }; // works void bar(Foo f = { 1.0, 0.0 }) {} // fails...