Re: [ft-devel] freetype opengl texture

2007-08-10 Thread zill
FreeType specifically says it should be glyph-bitmap and if I change it, it throws all kind of errors at me. I changed to the power of two, and it is still giving me blank images, not that that would cause that anyways. Why is nothing being stored in the bitmap? Christian Demmer wrote:

Re: [ft-devel] freetype opengl texture

2007-08-10 Thread Christian Demmer
zill wrote: I'm still getting a white square which is leading me to believe that there is something wrong with the FreeType code. I should be able to figure out the gl code as soon as I can figure out how to get the FreeType to work. I don't see what I'm doing wrong since I followed the

Re: [ft-devel] freetype opengl texture

2007-08-10 Thread zill
I've got it actually drawing some scrambled up images now. Which is good because now I know that all I need to figure out is the glTexImage2D parameters. here is the whole code right now: bool Engine::ft_render_glyph(char c) { FT_UInt glyph_index = FT_Get_Char_Index(ft_face, c);

Re: [ft-devel] otvalid modules

2007-08-10 Thread George Williams
I blush to admit that I miscounted the number of constants in one of the tables (there are 56 not 57). Please apply the otvmathconstant patch On Wed, 2007-08-08 at 11:24, Werner LEMBERG wrote: Suzuki-san, what do you think and/or suggest? I have a couple of general questions. Probably for

[ft-devel] cross-compile configure error (patch)

2007-08-10 Thread Ryan Hill
When cross-compiling freetype, when the build compiler executable ends in -gcc and CC_BUILD is not set in the environment, configure will fail to find the native compiler and die. The attached patch sets CC_BUILD to ${build}-gcc rather than ${build-gcc}. I've seen a similar patch in some

Re: [ft-devel] cross-compile configure error (patch)

2007-08-10 Thread mpsuzuki
Dear Sir, Great Thank you for checking the cross compiling feature of freetype2, I'm the author of the part you fixed. On Fri, 10 Aug 2007 18:38:21 -0600 Ryan Hill [EMAIL PROTECTED] wrote: When cross-compiling freetype, when the build compiler executable ends in -gcc and CC_BUILD is not set in