Vladimír Vondruš

Results 549 comments of Vladimír Vondruš

Some _(scary!)_ information about colorspaces in DDS files: http://stackoverflow.com/questions/13491131/what-are-the-exact-color-spaces-of-dxgi-formats

sRGB support in `Color[34]` classes done in 2b97e5336022841e1ff4d122d5acea4b10dc276f.

Just discovered that WebGL has [WEBGL_compressed_texture_s3tc_srgb](https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_s3tc_srgb/).

Added http://www.ericbrasseur.org/gamma.html to the list, great set of test images. Chrome on my HiDPI screen is apparently *not* doing the right thing, it seems.

Nah, actually it seems to be doing the correct thing: http://www.ericbrasseur.org/gamma_dalai_lama.html

- sRGB variants of S3TC compression formats added in https://github.com/mosra/magnum/commit/02538d566f704324761cc587e989ac013121d4b6 - sRGB `PixelFormat` values and one and two-component sRGB texture formats added in https://github.com/mosra/magnum/commit/40b8815b9da1841b885bb2e7ac20aa8f0c3417c1

Latest `master` of magnum depends on latest `master` of corrade, meaning you have to install *both* with `--head`. Vcpkg itself isn't clever enough to do that on its own, so...

Hello! :) Which documentation did you follow, actually? There's a [Getting Started Guide](https://doc.magnum.graphics/magnum/getting-started.html) that's covering the initial setup in a detailed-enough step-by-step approach. If you get through this guide, building...

Hi, This is strange. Yes, you're right, this is an implementation detail and as such you should only need to enable `WITH_SDL2APPLICATION` to get the Sdl2Application to compile and link...

If you set `CMAKE_PREFIX_PATH` to where Corrade (or SDL, or any other dependency) is installed, that should work too -- this is the standard variable that works everywhere without the...