• Show log

    Commit

  • Hash : 1a4c0d4e
    Author : Sam Lantinga
    Date : 2018-11-12T19:23:49

    Fixed bug 4377 - SDL_PIXELFORMAT enum is anonymous, which prevents its use in a templated function
    
    zen3d
    
    While trying to build Pixie lisp (https://github.com/pixie-lang/pixie), which uses SDL for multimedia output, the mandelbrot example won't build. The problem is that internally pixie uses a templated function to dump a value, and gcc chokes because SDL_PIXELFORMAT_RGA8888 is an anonymous enum.
    
    I solved the problem locally by changing from:
       enum {
          SDL_PIXELFORMAT_UNKNOWN,
          ... etc. ...
          SDL_PIXELFORMAT_YUYV = ... etc ...
       };
    to:
       typedef enum {
          SDL_PIXELFORMAT_UNKNOWN,
          ... etc. ...
          SDL_PIXELFORMAT_YUYV = ... etc ...
       } SDL_PIXELFORMAT_ENUM;
    The net result of this change is that the enum containing SDL_PIXELFORMAT_* is no longer an anonymous enum and can now be used by a templated function.
    
    This local change fixes Pixie lisp for me.
    
    I did notice that you use the idiom
       typedef enum {
          ... etc ...
       } SDL_FOO;
    elsewhere in your code, so that change to SDL_PIXELFORMAT doesn't look like it would have a negative impact.
    

  • Properties

  • Git HTTP https://git.kmx.io/kc3-lang/SDL.git
    Git SSH git@git.kmx.io:kc3-lang/SDL.git
    Public access ? public
    Description

    Fork of https://github.com/libsdl-org/SDL

    Users
    thodg_m kc3_lang_org thodg_w thodg_l www_kmx_io thodg
    Tags

  • README.txt

  •                          Simple DirectMedia Layer
    
                                      (SDL)
    
                                    Version 2.0
    
    ---
    https://www.libsdl.org/
    
    Simple DirectMedia Layer is a cross-platform development library designed
    to provide low level access to audio, keyboard, mouse, joystick, and graphics
    hardware via OpenGL and Direct3D. It is used by video playback software,
    emulators, and popular games including Valve's award winning catalog
    and many Humble Bundle games.
    
    More extensive documentation is available in the docs directory, starting
    with README.md
    
    Enjoy!
    	Sam Lantinga				(slouken@libsdl.org)