Giter Club home page Giter Club logo

Comments (3)

jackpal avatar jackpal commented on July 18, 2024

I think the problem is that those functions are missing from SDL_ttf.h, which is part of the C SDL library.

Maybe it's a version issue. Maybe we're using a SDL 2.0 and this code is expecting some newer version of SDL.

I worked around the issue by commenting out each of the lines in ttf.go that referred to an undeclared identifier.

from go-sdl.

bussiere avatar bussiere commented on July 18, 2024

same here 👍 go get -u github.com/banthar/Go-SDL/ttf

github.com/banthar/Go-SDL/ttf

1: error: 'TTF_SetFontHinting' undeclared (first use in this function)
1: note: each undeclared identifier is reported only once for each function it appears in
1: error: 'TTF_SetFontOutline' undeclared (first use in this function)
1: error: 'TTF_GetFontOutline' undeclared (first use in this function)
1: error: 'TTF_GetFontHinting' undeclared (first use in this function)

from go-sdl.

djmdjm avatar djmdjm commented on July 18, 2024

Commenting out the *FontOutline and *FontHinting methods gets it going for me on Ubuntu Precise with libsdl-ttf-2.09:

diff --git a/ttf/ttf.go b/ttf/ttf.go
index 3401543..d1a4a74 100644
--- a/ttf/ttf.go
+++ b/ttf/ttf.go
@@ -161,13 +161,13 @@ func (f *Font) GetStyle() int { return int(C.TTF_GetFontSt
 // Sets the rendering style of the font.
 func (f *Font) SetStyle(style int) { C.TTF_SetFontStyle(f.cfont, C.int(style)) 

-func (f *Font) GetOutline() int { return int(C.TTF_GetFontOutline(f.cfont)) }
+// func (f *Font) GetOutline() int { return int(C.TTF_GetFontOutline(f.cfont)) 

-func (f *Font) SetOutline(outline int) { C.TTF_SetFontOutline(f.cfont, C.int(ou
+// func (f *Font) SetOutline(outline int) { C.TTF_SetFontOutline(f.cfont, C.int

-func (f *Font) GetHinting() int { return int(C.TTF_GetFontHinting(f.cfont)) }
+// func (f *Font) GetHinting() int { return int(C.TTF_GetFontHinting(f.cfont)) 

-func (f *Font) SetHinting(hinting int) { C.TTF_SetFontHinting(f.cfont, C.int(hi
+// func (f *Font) SetHinting(hinting int) { C.TTF_SetFontHinting(f.cfont, C.int

 // Returns the maximum height of all the glyphs of the font.
 func (f *Font) Height() int { return int(C.TTF_FontHeight(f.cfont)) }

from go-sdl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.