similar to: Where to report DIB engine bugs?

Displaying 20 results from an estimated 10000 matches similar to: "Where to report DIB engine bugs?"

2012 Jan 30
4
DIB Engine
Is the lastes versione of Dib engine included in wine1.4rc?? If not, how i where i can take the copy of the lastes version of the dib engine... I have already controlled http://wiki.winehq.org/DIBEngine and http://bugs.winehq.org/show_bug.cgi?id=421 but i could not find the lastest dib engine version.. Pls need help and sory for bad english! [Rolling Eyes]
2009 May 01
1
Re: AutoCAD and Wine
austin987 wrote: > On Fri, May 1, 2009 at 11:22 AM, miciomax <wineforum-user at winehq.org> wrote: > > > > > ruelle wrote: > > > > > a good news about autoCAD: > > > http://forum.winehq.org/viewtopic.php?p=23584&sid=450fb2ccd4751fd3d6d5528da00ef90d > > > > > > thank you Max!! > > > > > > when the patch
2009 May 01
1
Re: AutoCAD and Wine
ruelle wrote: > a good news about autoCAD: > http://forum.winehq.org/viewtopic.php?p=23584&sid=450fb2ccd4751fd3d6d5528da00ef90d > > thank you Max!! > > when the patch will be accepted in official wine-git? Hi ruelle, As Austin said, MText crash (point 1 of post you linked) is fixed in git. Point 2, aka the DIB engine, won't very probably never be accepted on wine
2009 May 24
3
Registry setting question...
Is there a way to set registry key, other then editing system.reg/user.reg file? For DIB engine we can export WINEDIB=ON or edit registry, is this the case with other registry keys as well? Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://www.winehq.org/pipermail/wine-users/attachments/20090524/b69fa546/attachment.htm>
2011 Oct 21
1
New DIB Engine still slow compared to the MAX engine?
I've been using the Max version of the DIB engine for a long time now, and it was always useful because it sped up everything so much. There were of course occasional glitches graphically (noticeably a few font colour issues though these were still less severe than the font color issues without max's engine). Once Huw started work on the new DIB engine that was going to go into the main
2009 Apr 23
3
Some news for AutoCAD users
Well, finally some news that make Autocad almost perfect on wine. Tested on 2005 and 2008. To install AutoCAD, just follow the howto on appdb. Here the patchsets : 1) Multiline text editor crash : go to bug 14827 page (http://bugs.winehq.org/show_bug.cgi?id=14827) download and apply the patch to wine tree and rebuild/install it. Please don't ask how to do it.... it's on many places in
2010 Aug 14
6
How to use the wineprefix with another wine-path
Hi, there I recently purchased a copy of bordeaux in order to try the dib engine (and pulse) in wine1.2 I would like to use this in already installed bottles. So I tried something like this: code: [export WINEDIB=ON] then (as an example) code:[/opt/bordeaux/bin/wine | env WINEPREFIX=~/.wine-test wine winecfg] This does create a wine bottle, but in this way the dib engine doesn't get loaded
2009 Jun 07
2
Purpose of DIB Engine?
Hello again. Today I got following question: What is the purpose of DIB Engine? Is it to speed up DirectDraw apps, or is it to add missing functionality for DirectDraw ?emulation?? I'm asking this because I recently tested few DDraw apps (Fallout2 and Happyland Adventures) with DIB enabled and... well for HA there was now significant speed difference, and Fallout2 slowed down even more :( .
2009 Jun 11
1
How to add application dependant on a bug?
I mean, in bugzilla. I tested a game with a DIB Engine available - and the performance was improved dramatically. So i wanted to add in the list of apps, dependent on the bug. But didn't understand, how...
2009 Jan 09
2
Re: AutoCAD and Wine
http://www.winehq.org/pipermail/wine-devel/2008-December/071165.html does anybody have news about dib engine (or AutoCAD)?? thanks
2015 Aug 12
2
Re: [PATCH] dib: handle unsetting functions in environment
On Wednesday 12 August 2015 10:33:00 John Eckersberg wrote: > If a function name, with its trailing parentheses, is in the > environment , trying to unset it will error out with a message of "not > a valid identifier". In this case, try to unset it again with the -f > option which can handle the parentheses in the supplied identifier. > --- > dib/dib.ml | 2 +- > 1
2016 Apr 21
1
[PATCH] dib: Rewrite match statement as ordinary if statement.
Just stylistic change, no functional change. --- dib/dib.ml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dib/dib.ml b/dib/dib.ml index 06a1f67..35ae6b7 100644 --- a/dib/dib.ml +++ b/dib/dib.ml @@ -781,9 +781,8 @@ let main () = ) @ mkfs_options @ [ "-t"; cmdline.fs_type; blockdev ] in ignore (g#debug "sh" (Array.of_list ([ "mkfs" ]
2015 Aug 12
2
[PATCH v2] dib: handle unsetting functions in environment
When I turned off debug and actually looked at the normal output, this is a bit noisy... [jeckersb@baozi libguestfs]$ ./run virt-dib -B ~/git/diskimage-builder/lib/ --element-path ~/git/diskimage-builder/elements/ fedora-minimal [ 0.0] Elements: base fedora-minimal [ 0.0] Expanded elements: base dib-init-system dib-run-parts fedora-minimal install-types package-installs pkg-map redhat-common
2015 Aug 12
3
[PATCH 0/1] dib: handle unsetting functions in environment
This fixes this error I'm hitting when trying to run virt-dib: $ ./run virt-dib -v -x -B ~/git/diskimage-builder/lib/ --element-path ~/git/diskimage-builder/elements/ fedora-minimal [ 0.0] Elements: base fedora-minimal [ 0.0] Expanded elements: base dib-init-system dib-run-parts fedora-minimal install-types package-installs pkg-map redhat-common rpm-distro yum yum-minimal [ 0.0] Carried
2017 Feb 17
2
[PATCH 1/2] dib: preserve xattrs and SELinux attributes when exporting as tar
When extracting the content of the guest as tar, save also the extended attributes and the SELinux attributes. This makes sure guests exported as tar, tgz, and as docker image will work fine afterwards. This is what disk-image-create does as well. --- dib/output_format_docker.ml | 3 ++- dib/output_format_tar.ml | 3 ++- dib/output_format_tgz.ml | 4 ++-- 3 files changed, 6 insertions(+),
2015 Nov 11
2
[PATCH 1/2] dib: Make the interface between cmdline.ml and dib.ml explicit.
--- dib/Makefile.am | 5 ++- dib/cmdline.ml | 49 +++++++++++++++++++++--- dib/cmdline.mli | 51 +++++++++++++++++++++++++ dib/dib.ml | 113 ++++++++++++++++++++++++++++++-------------------------- 4 files changed, 158 insertions(+), 60 deletions(-) create mode 100644 dib/cmdline.mli diff --git a/dib/Makefile.am b/dib/Makefile.am index 0786d64..ad1fd6a 100644 --- a/dib/Makefile.am +++
2017 Mar 22
7
[PATCH 0/5] dib: initial work to support d-i-b 2.0
Hi, this series start to implement some of the changes needed to support d-i-b 2.0; normal VM distro builds seem to work correctly, ramdisk builds are still broken and require more efforts. Thanks, Pino Toscano (5): dib: implement get_image_element_array stuff dib: export IMAGE_BLOCK_DEVICE_WITHOUT_PART dib: extract get_required_tool out of require_tool dib: require a Python interpreter
2017 Feb 21
3
[PATCH 1/3] dib: unset all temporary dirs envvars in fake-sudo
The real sudo does it as well, and leaving them when preserving the environment (-E) maybe breaks the applications, as e.g. chroot will have a TMPDIR path pointing outside of it. --- dib/dib.ml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dib/dib.ml b/dib/dib.ml index df83ba1..d15cd19 100644 --- a/dib/dib.ml +++ b/dib/dib.ml @@ -301,6 +301,11 @@ if [ -z \"$preserve_env\" ];
2011 Dec 24
3
fixme:dib:make_rgb_colorref Unhandled color type ff000000
Hi, I'v got this error ("fixme:dib:make_rgb_colorref Unhandled color type ff000000") which is expressed such an artifacts in a translucent areas: [img]http://imgur.com/hk0nK[/img] while in winXP screenshot looks like this: [img]http://imgur.com/JqWnP[/img] the program was written on Delphi artifact there was on Ubuntu 11.10 with wine-1.3.35-0ubuntu1~ppa1~oneiric1 Thanks in advance
2011 Aug 22
1
OpenGL + DIB
Hello, I am testing some OpenGL software that uses a DIB backed device context followed by a BitBlt operation to draw graphics on to an on-screen canvas. Unfortunately this does not seem to work.? I have tried to patch the latest wine with DIB engine patches (bug 421), but, was unable to get it working still. My question(s) are: 1) Is this a known issue? 2) Is it in the scope of the DIB engine