User Details
- User Since
- Feb 3 2017, 10:51 PM (319 w, 6 d)
Fri, Mar 17
Added.
Thu, Mar 16
Tue, Mar 14
Sun, Mar 12
Sat, Mar 11
Fri, Mar 10
Thu, Mar 9
I mean address mode of texture samplers, particularly Sampler::AddressMode::CLAMP_TO_EDGE.
Tue, Feb 28
Nope, it's implementation defined. You just recieve const JS::RootedValue& librarySettings. It might be silently built or copied inside.
It's not good to allow access for everyone.
In appendLibrary you still need to extract JS::RootedValue (JS::RootedValue isn't movable nor copyable IIRC) that means you still hides the data-flow.
Wed, Feb 22
I don't mind, though it'll make the report a bit bigger:
// This: { "enet": "...", // ... } // Or this: [ { "name": "enet", "version": "...", }, // ... ]
Propably also Vulkan...
Vulkan isn't just a library, it's a backend which depends on environment and configuration. Libraries look more constant in that way.
Feb 21 2023
Feb 20 2023
I was thinking about that. I'm not sure which variant is better. In one hand SDL is a library on other hand SDL needs to print not only its version but also some additional info like CPU count.
Feb 17 2023
Feb 16 2023
Feb 15 2023
Feb 13 2023
Feb 12 2023
Feb 9 2023
I'd prefer to rewrite our event system, because currently it's too C-style and unsafe.
Feb 8 2023
Feb 7 2023
Feb 2 2023
I'd prefer to calculate the number of draw calls and related numbers inside backend as it's much less error prone.
Feb 1 2023
Jan 31 2023
Jan 30 2023
I don't mind both of them, but upstream should be done and shouldn't be forgotten.
It seems ok for Atlas.
Yeah, I need to update VMA.
Jan 29 2023
Jan 28 2023
Looks ok for Atlas.
Jan 26 2023
I got the following warnings when build with --build-shared-glooxwrapper:
libraries\win32\gloox\include\gloox\clientbase.h(769): warning C4373: 'gloox::ClientBase::handlePing': virtual function overrides 'gloox::PingHandler::handlePing', previous versions of the compiler did not override when parameters only differed by const/volatile qualifiers libraries\win32\gloox\include\gloox\pinghandler.h(61): note: see declaration of 'gloox::PingHandler::handlePing' libraries\win32\gloox\include\gloox\clientbase.h(769): warning C4373: 'gloox::ClientBase::handlePing': virtual function overrides 'gloox::PingHandler::handlePing', previous versions of the compiler did not override when parameters only differed by const/volatile qualifiers (compiling source file ..\..\..\source\lobby\StanzaExtensions.cpp) libraries\win32\gloox\include\gloox\pinghandler.h(61): note: see declaration of 'gloox::PingHandler::handlePing' (compiling source file ..\..\..\source\lobby\StanzaExtensions.cpp) libraries\win32\gloox\include\gloox\clientbase.h(769): warning C4373: 'gloox::ClientBase::handlePing': virtual function overrides 'gloox::PingHandler::handlePing', previous versions of the compiler did not override when parameters only differed by const/volatile qualifiers (compiling source file ..\..\..\source\lobby\scripting\GlooxScriptConversions.cpp) libraries\win32\gloox\include\gloox\pinghandler.h(61): note: see declaration of 'gloox::PingHandler::handlePing' (compiling source file ..\..\..\source\lobby\scripting\GlooxScriptConversions.cpp) libraries\win32\gloox\include\gloox\clientbase.h(769): warning C4373: 'gloox::ClientBase::handlePing': virtual function overrides 'gloox::PingHandler::handlePing', previous versions of the compiler did not override when parameters only differed by const/volatile qualifiers (compiling source file ..\..\..\source\lobby\XmppClient.cpp) libraries\win32\gloox\include\gloox\pinghandler.h(61): note: see declaration of 'gloox::PingHandler::handlePing' (compiling source file ..\..\..\source\lobby\XmppClient.cpp)
Vulkan does support vsync, MoltenVK might not.