Does Wine implement BeginPath/GetPath ?

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
User avatar
sprezzatura
Level 1
Level 1
Posts: 9
Joined: Sat Dec 16, 2017 10:09 am

Does Wine implement BeginPath/GetPath ?

Post by sprezzatura »

BeginPath/EndPath/GetPath are used to get the X/Y coordinates of points on the outline of a glyph.

My app calls this, and when running under Wine, nothing is returned.
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Does Wine implement BeginPath/GetPath ?

Post by Bob Wya »

@sprezzatura,

If you mean the gdi32.dll API calls... Then the answer is yes.
But obviously your issue could be dependent on what objects you are passing to these functions.

Perhaps a trace with:

Code: Select all

export WINEDEBUG=+gdi
wine .... &>~/wine_log_file.txt   # run your application and save a log file to your ${HOME} directory
would be more enlightening?
See: WineHQ FAQ: 10.1.1 How can I get a debugging log (a.k.a. terminal output)?

Don't forget to indicate what:
  • Version of Wine you are using
  • Operating System you are testing with

Please also use the forum Code:

Code: Select all

Code
tags if posting terminal output / commands inline - in a forum post...

Bob
User avatar
DarkShadow44
Level 8
Level 8
Posts: 1207
Joined: Tue Nov 22, 2016 5:39 pm

Re: Does Wine implement BeginPath/GetPath ?

Post by DarkShadow44 »

Do you have a test program for us to reproduce the problem?
Locked