[fpc-pascal] some problem with assembler code generated by fpc for arm

2007-06-28 Thread josepascual
Hi everyone, I try to compiling a pascal unit with fpc and It compiles okey for i386 but arm with fpcrossarm compiling file show this two error: Compiling luaobjects.pas Assembling luaobjects luaobjects.s: Assembler messages: luaobjects.s:2078: Error: co-processor address must be word aligned --

Re: [fpc-pascal] fpcanvas and Interpolation filters

2007-06-28 Thread Michael Van Canneyt
On Thu, 28 Jun 2007, Graeme Geldenhuys wrote: > Hi, > > Looking at the 'fpcanvas' unit in FCL it seems we only have the > Mitchel Interpolation implemented. Is this a correct assumption? No. There is a second unit which implements other interpolations: extinterpolation. It registers the follo

Re: [fpc-pascal] fcl-image and fpreadXXX units

2007-06-28 Thread Felipe Monteiro de Carvalho
On 6/28/07, Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: 'fpcanvas' references 'fpimage' in the uses clause. I wanted to make it clear that fpimage doesn't use fpcanvas =) It seams I didn't express it correctly. -- Felipe Monteiro de Carvalho ___ fpc

Re: [fpc-pascal] fcl-image and fpreadXXX units

2007-06-28 Thread Graeme Geldenhuys
On 28/06/07, Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> wrote: On 6/28/07, Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: > 'fpcanvas' references 'fpimage' in the uses clause. I wanted to make it clear that fpimage doesn't use fpcanvas =) It seams I didn't express it correctly. Ah yes, read

Re: [fpc-pascal] fcl-image and fpreadXXX units

2007-06-28 Thread Graeme Geldenhuys
On 28/06/07, Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> wrote: They are used together with TFPCustomImage from fpimage.pp file. AFAIK they are not directly related to TFPCustomCanvas, and you don't need to use it in order to use those units. 'fpcanvas' references 'fpimage' in the uses cla

Re: [fpc-pascal] fcl-image and fpreadXXX units

2007-06-28 Thread Felipe Monteiro de Carvalho
On 6/28/07, Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: In the fcl-image directory is a lot of fpreadXXX and fpwriteXXX units. Those are low-level image reading and writing (to disk or stream) routines. They implement the TFPCustomImageReader (or Writer) class. They are used together with TFP

[fpc-pascal] fcl-image and fpreadXXX units

2007-06-28 Thread Graeme Geldenhuys
Hi, In the fcl-image directory is a lot of fpreadXXX and fpwriteXXX units. Are those full implementations or are they abstract classes like TFPCustomFont, TFPCustomCanvas, etc? In other words, do I still need to implement parts of them to be able to use them? Regards, - Graeme - ___

[fpc-pascal] Re: fpcanvas and Interpolation filters

2007-06-28 Thread Graeme Geldenhuys
OK, I answered by own question. I found the 'extinterpolation' unit which contains a whole bunch of interpolation filters defined. :-) Graeme. On 28/06/07, Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: Hi, Looking at the 'fpcanvas' unit in FCL it seems we only have the Mitchel Interpolation i

[fpc-pascal] fpcanvas and Interpolation filters

2007-06-28 Thread Graeme Geldenhuys
Hi, Looking at the 'fpcanvas' unit in FCL it seems we only have the Mitchel Interpolation implemented. Is this a correct assumption? What about a few other types? 'Box' aka "Nearest Neighbour" 'Triangle' aka "Linear" or "Bilinear" 'Hermite' 'Bell' 'B-Spline' 'Lanczos3' I have