rtj

Results 9 issues of rtj

Such as: https://github.com/ocornut/imgui/blob/6b2e03c5b1bc4f99dbd86d10e5fd12af9e3fe1c2/imgui.h#L2005-L2009 Premise for that: * all platform stuff, e.g: `im3d_impl_win32` internals goes to (as-is): `AppData::m_appData` * all renderer depended stuff, e.g.: `im3d_impl_dx12` goes to: `AppData::m_rendererData`

There is a usage pattern for `string` like types when internal buffer (with known size _a priori_)] is filled later, e.g.: https://github.com/ocornut/imgui/blob/master/misc/cpp/imgui_stdlib.cpp Could you please consider to add `resize()` or...

Continuing from: https://github.com/felixguendling/cista/issues/189 Consider this: ``` constexpr auto limit = cista::generic_string::short_length_limit; using string = cista::raw::string; auto size_m3 = string("", limit - 3).size(); auto size_m1 = string("", limit - 1).size(); auto...

This is work of @cheaterdev, details are in: https://github.com/ubisoft/Sharpmake/issues/145 https://github.com/ubisoft/Sharpmake/issues/146

There is a missing `SHCNRF_ShellLevel` flag here - in the type of events for which to receive notifications: https://github.com/GPUOpen-LibrariesAndSDKs/RenderPipelineShaders/blob/31183408385c1e3e1711bd0320e17fcdf1ee07e9/tools/rpsl_explorer/src/file_monitor.hpp#L36-L41 It is necessary to include it to capture changes made, e.g....

Hi, Since the marketplace provides version 0.11.2; I want to start and build it using **vsce** and use the latest release - which is 0.11.3 (assuming it's currently the HEAD...

As the title states, it seems that `resources\three.min.js` injects/defines `saturate` macro for each source file. With this below a **'saturate': macro redefined** error is triggered: ``` #define saturate(x) clamp(x, 0.,...

This PR adds opt-in GLSL `#include` support, implemented as five incremental phases to keep reviewable commits and isolate responsibilities (resolution, expansion, mapping, integration, and UX). **Phases:** * phase 1: resolve...