Search:

Type: Posts; User: Chebmaster

Page 1 of 10 1 2 3 4

Search: Search took 0.02 seconds.

  1. System exceptions in your dll: Defeated!

    The problem is quite old and quite annoying.
    Imagine this: You choose a module structure for your engine, with one main exe and one to many DLLs. Then you find, with great dismay, that the...
  2. Replies
    37
    Views
    3,941

    Vampyre Imaging Library 0.24.0

    OpenGl can use this texture format easily. Caused me some trouble though, since I belong in the "If after umpteenth try it doesn't work, READ THE MANUAL AT LAST!" category. :oops:
  3. Replies
    8
    Views
    850

    Chepersy ODBMS on the way to v0.9

    0.8.98
    - Added support for the metaclass type fields
    (for class factories and such)
  4. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    (post removed)
  5. Replies
    7
    Views
    649

    The screen resolution problem

    The scaling problem is especialy important for a 2d game based on pixel art.
    In that case I would recommend to choose 800x600. It is low enough that it gets interpolated nicely on most modern...
  6. Replies
    7
    Views
    649

    The screen resolution problem

    I would strongly recommend to always use the desktop resolution: the video mode switching is an anachronism. The modern flat panel monitors interpolate your picture in all resolutions except their...
  7. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    P.S. I just dabbled a bit. The JpegError callback function is called when you call jpeg_start_decompress from TJpegFileFormat.LoadData, but since that function of yours is a stub, nothing happens.
    ...
  8. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    Lazarus does something strange when it compiles, I avoid using it for compiling non-LCL applications. For my projects I write a special .sh/.bat script and tell Lazarus run it instead of calling the...
  9. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    P.P.S. Just removed fpc 2.2.0 and reinstalled 2.2.2. My program compiles, Vampyre works!
    And there is no need for that pesky libstdc++. It seems, only that one pow() function was used.
  10. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    Ok, this little addition to your OpenJpeg unit solves the problem:


    {$ifdef unix}
    {$ifdef fpc}
    uses math;
    {$endif}
    {$endif}
    ...
    {$linklib libopenjpeglinx86.a}
  11. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    I'd like to, but the "undefined reference to `pow' " spoils everything. :(

    At the next weekend I'll look what could be done about this nasty obstacle. Preferably write the damned pow myself.

    ...
  12. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    P.S. I copied ImagingJpeg2000 unit from vampyre 0.24.2 and replaced the record definitions with that of 0.24.2, AND IT WORKED!

    So, it seems, the root of the problem is that you've changed...
  13. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    I updated it by copying everything except the function definitions from your new module.

    Everything looks identical:

    opj_image_comp = record
    dx: Integer; { XRsiz: horizontal...
  14. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    I removed fpc 2.2.2 and re-installed 2.2.0 but it still won't compile, the same "undefined reference to pow".

    I'll look into in the next weekend. For now, I tried to find why it crashes when I use...
  15. Replies
    58
    Views
    5,256

    Vampyre Imaging Library 0.26 Released

    Ok, I found a time to try it, at last. :D
    FPC 2.2.2:
    The Windows version works without a notch.
    The Linux version, hovever... :(


    My modified OpenJpeg with dynamic loading generates AV at...
  16. Replies
    8
    Views
    850

    Chepersy ODBMS on the way to v0.9

    0.8.97
    0.8.97
    - Fixed one major bug concerning registering several pointer-type fields when only the last one was properly marked as skipped. After loading these fields contained random...
  17. Replies
    37
    Views
    3,941

    Vampyre Imaging Library 0.24.0

    Ok, I implemented the dynamic loading. The windows DLL I downloaded from http://www.openjpeg.org/ (has a weird name mangling and stdcall convention). The Linux dll is a part of Linux ("openjpeg"...
  18. Replies
    37
    Views
    3,941

    Vampyre Imaging Library 0.24.0

    P.S. I'll try to modify OpenJpeg.pas, make it dynamically load libopenjpeg.so . It's one more dependency, but smaller executable.
  19. Replies
    37
    Views
    3,941

    Vampyre Imaging Library 0.24.0

    I installed fpc 2.2.2 for linux... and unexpectedly, it created a problem with vampyre.

    If I disable extras, everything is fine.
    If I enable extras, various linking problems arise. First, it...
  20. Replies
    8
    Views
    850

    Chepersy ODBMS on the way to v0.9

    0.8.96
    - Removed the support for classes that aren't descendants of TTrulyPersistent: it caused a fatal bug, the very algorithm was wrong :(
    - Corrected one typo in constant name
  21. Replies
    8
    Views
    850

    Chepersy ODBMS on the way to v0.9

    0.8.95
    - Added the feature of selective saving objects by mask (see the manual)
    - Added support for classes that aren't descendants of TTrulyPersistent (see the manual and the test...
  22. Replies
    8
    Views
    850

    Chepersy ODBMS on the way to v0.9

    0.8.94
    - Added the feature of walking the object graph, finally making Chepersy a real database - see the "Walking the graph" section in the manual.
    - The test example updated to show off ...
  23. Replies
    8
    Views
    850

    Chepersy ODBMS on the way to v0.9

    As I understand it, and ODBMS is a database engine that is tightly integrated into the language itself, erasing the border between your program and the data itself. To really integrate, we'd have to...
  24. Replies
    8
    Views
    850

    Chepersy ODBMS on the way to v0.9

    0.8.93. The same URL. Two severe bugs fixed. :oops:
  25. Replies
    8
    Views
    850

    Chepersy ODBMS on the way to v0.9

    It never occured to me that I was creating a real database management system - but that's what my Chepersy is. :lol:

    I decided to evolve it, so I totally rehauled the API, removed many...
Results 1 to 25 of 249
Page 1 of 10 1 2 3 4
http://flippulseimages.com/Dogs/infant---development.html