Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix attributes count #16

Open
wants to merge 2 commits into
base: GL-version
Choose a base branch
from

Commits on May 16, 2022

  1. Fix macOS compilation with FPC >= 3.2.0

    Since FPC 3.2.0, one has to use `ObjCBool` instead of `Boolean`, otherwise GLPT compilation fails at various overrides because the methods are declared in ancestor with `ObjCBool` (not compatible with Pascal `Boolean`).
    
    E.g. in latest FPC, `packages/cocoaint/src/appkit/NSWindow.inc` defines
    
    ```
    function initWithContentRect_styleMask_backing_defer (contentRect: NSRect; aStyle: NSUInteger; bufferingType: NSBackingStoreType; flag: ObjCBOOL): instancetype; message 'initWithContentRect:styleMask:backing:defer:';
    ```
    
    In GLPT, this should be overridden with `flag: ObjCBool`, not `flag: Boolean`.
    
    See https://fpcwiki.coderetro.net/User_Changes_3.2.0#objcbase .
    administrator committed May 16, 2022
    Configuration menu
    Copy the full SHA
    6ce44f2 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2022

  1. Fix attributes count in TOpenGLView.defaultPixelFormat

    Current count (5) is too small to fit various possible values we want
    to put on that list.
    michaliskambi committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    0fd0871 View commit details
    Browse the repository at this point in the history