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 --
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
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
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
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
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
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 -
___
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
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