Skip to content
View pmttavara's full-sized avatar
Coffee lover
Coffee lover

Block or report pmttavara

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ph2 ph2 Public

    Silent Hill 2 level editor (complete!)

    C++ 46 2

  2. OpenGL-on-DXGI1.3 OpenGL-on-DXGI1.3 Public archive

    OpenGL on flip-model swapchains via WGL_NV_DX_interop2

    C 19

  3. The definitive defer implementation ... The definitive defer implementation for C++. Syntax: defer { statements; };
    1
    #ifndef defer
    2
    struct defer_dummy {};
    3
    template <class F> struct deferrer { F f; ~deferrer() { f(); } };
    4
    template <class F> deferrer<F> operator*(defer_dummy, F f) { return {f}; }
    5
    #define DEFER_(LINE) zz_defer##LINE
  4. Better assert() for Windows - public... Better assert() for Windows - public domain
    1
    #ifndef good_assert /* Better assert() for Windows - public domain */
    2
    #ifdef _WIN32
    3
    #ifdef __cplusplus
    4
    extern "C" {
    5
    #endif