digimend-users Mailing List for DIGImend (Page 16)
Brought to you by:
spb_nick
You can subscribe to this list here.
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
(58) |
May
(72) |
Jun
(24) |
Jul
|
Aug
(12) |
Sep
(9) |
Oct
(10) |
Nov
(2) |
Dec
(4) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2013 |
Jan
(5) |
Feb
(23) |
Mar
|
Apr
|
May
(4) |
Jun
(7) |
Jul
(2) |
Aug
(2) |
Sep
(5) |
Oct
(7) |
Nov
(31) |
Dec
(11) |
| 2014 |
Jan
(13) |
Feb
(4) |
Mar
(1) |
Apr
(1) |
May
(1) |
Jun
(2) |
Jul
(12) |
Aug
(10) |
Sep
(13) |
Oct
(15) |
Nov
(49) |
Dec
(4) |
| 2015 |
Jan
(49) |
Feb
(62) |
Mar
(81) |
Apr
(10) |
May
(4) |
Jun
(6) |
Jul
(17) |
Aug
(3) |
Sep
(1) |
Oct
(4) |
Nov
|
Dec
(8) |
| 2016 |
Jan
(8) |
Feb
(5) |
Mar
(7) |
Apr
(7) |
May
(3) |
Jun
(4) |
Jul
(12) |
Aug
(8) |
Sep
(6) |
Oct
(4) |
Nov
(1) |
Dec
|
|
From: onur u. <on...@ul...> - 2012-10-25 14:56:11
|
I use UC-logic wp8060 graphic tablet.* *It doesn't work in ubuntu 12.04 and ubuntu 12.10. Detail of the Isusb code onuruluturhan@onuruluturhan:~$ lsusb Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 002: ID 064e:a103 Suyin Corp. Acer/HP Integrated Webcam [CN0314] Bus 003 Device 002: ID 0a5c:2101 Broadcom Corp. Bluetooth Controller Bus 004 Device 002: ID 5543:0041 UC-Logic Technology Corp. Genius PenSketch 6x8 Tablet |
|
From: Favux ... <fav...@gm...> - 2012-10-11 18:48:44
|
Sorry, should have shown details:
$ patch -p2 < 0001-dix-undo-transformation-for-missing-valuators-49347.patch
patching file getevents.c
Hunk #1 succeeded at 1146 (offset -21 lines).
And now the function looks like (other than the indents):
/**
* Apply the device's transformation matrix to the valuator mask and replace
* the scaled values in mask. This transformation only applies to valuators
* 0 and 1, others will be untouched.
*
* @param dev The device the valuators came from
* @param[in,out] mask The valuator mask.
*/
static void
transformAbsolute(DeviceIntPtr dev, ValuatorMask *mask)
{
double x, y, ox, oy;
if (!valuator_mask_isset(mask, 0) || !valuator_mask_isset(mask, 1)) {
struct pixman_f_transform invert;
/* undo transformation from last event */
ox = dev->last.valuators[0];
oy = dev->last.valuators[1];
pixman_f_transform_invert(&invert, &dev->transform);
transform(&invert, &ox, &oy);
x = ox;
y = oy;
}
if (valuator_mask_isset(mask, 0))
ox = x = valuator_mask_get_double(mask, 0);
if (valuator_mask_isset(mask, 1))
oy = y = valuator_mask_get_double(mask, 1);
transform(&dev->transform, &x, &y);
if (valuator_mask_isset(mask, 0) || ox != x)
valuator_mask_set_double(mask, 0, x);
if (valuator_mask_isset(mask, 1) || oy != y)
valuator_mask_set_double(mask, 1, y);
}
|
|
From: Favux ... <fav...@gm...> - 2012-10-11 18:39:08
|
On Thu, Oct 11, 2012 at 1:12 PM, Zauber Paracelsus <za...@gr...> wrote: > On Thu, 11 Oct 2012 12:50:01 -0500 > "Favux ..." <fav...@gm...> wrote: > >> Nick's patch was on 5-15-12 and the Ubuntu xserver-xorg-core >> (2:1.11.4-0ubuntu10.6) ChangeLog shows the last entry as 7-16-12. But >> I don't see a patch that obviously affects getevents.c. > > Weird. Alright, I just patched the getevents.c source code successfully with Peter's 0001-dix-undo-transformation-for-missing-valuators-49347.patch. Try that patch instead. Everything seems correct with it. Favux |
|
From: Favux ... <fav...@gm...> - 2012-10-11 17:50:10
|
Nick's patch was on 5-15-12 and the Ubuntu xserver-xorg-core (2:1.11.4-0ubuntu10.6) ChangeLog shows the last entry as 7-16-12. But I don't see a patch that obviously affects getevents.c. |
|
From: Favux ... <fav...@gm...> - 2012-10-11 17:37:49
|
On Thu, Oct 11, 2012 at 12:36 PM, Favux ... <fav...@gm...> wrote: > On Thu, Oct 11, 2012 at 11:25 AM, Zauber Paracelsus <za...@gr...> wrote: >> On Wed, 10 Oct 2012 23:13:43 -0500 >> "Favux ..." <fav...@gm...> wrote: >> >> I had been using this patch: >> http://sourceforge.net/mailarchive/attachment.php?list_name=digimend-users&message_id=4FB25214.7050103%40gmail.com&counter=1 >> >> That is one that Nikolai had attached to an email in the original thread. It was a backport of the fix to version 1.11.4 of Xorg, the same version Ubuntu Precise currently uses. >> >> My guess is that it might be patch ordering. Under the debian/patches folder is a file named "series" which has these two comments at the top: >> >> ## Patches with a number < 100 are applied in debian. >> ## Ubuntu patches start with 100. >> >> So, I tried placing it in various different orderings, though still no luck. Might not be patch ordering. >> > > I don't think it is ordering. I downloaded the source code i.e. > xorg-server-1.11.4: > apt-get source xserver-xorg-core > And then applied the patch to getevents.c and got the same error: > patching file xorg-server-1.11.4/dix/getevents.c > Hunk #1 FAILED at 1078. > 1 out of 1 hunk FAILED -- saving rejects to file > xorg-server-1.11.4/dix/getevents.c.rej > > Looking at the source code in getevents.c it looks like things have > changed quite a bit. For one thing we seem to be at line 1136 instead > of around line 1078 in the patch. But I don't think it is the offset. > It looks to be the function I think we're trying to patch has changed > a bit: > /** > * Apply the device's transformation matrix to the valuator mask and replace > * the scaled values in mask. This transformation only applies to valuators > * 0 and 1, others will be untouched. > * > * @param dev The device the valuators came from > * @param[in,out] mask The valuator mask. > */ > static void > transformAbsolute(DeviceIntPtr dev, ValuatorMask *mask) > { > double x, y, ox, oy; > > if (valuator_mask_isset(mask, 0)) > ox = x = valuator_mask_get_double(mask, 0); > else > ox = x = dev->last.valuators[0]; > > if (valuator_mask_isset(mask, 1)) > oy = y = valuator_mask_get_double(mask, 1); > else > oy = y = dev->last.valuators[1]; > > transform(&dev->transform, &x, &y); > > if (valuator_mask_isset(mask, 0) || ox != x) > valuator_mask_set_double(mask, 0, x); > > if (valuator_mask_isset(mask, 1) || oy != y) > valuator_mask_set_double(mask, 1, y); > } > > So that's what needs to be addressed. > > Favux Oops, forgot to send to DIGImend-users too. |
|
From: Favux ... <fav...@gm...> - 2012-10-11 04:13:50
|
On Wed, Oct 10, 2012 at 10:46 PM, Zauber Paracelsus <za...@gr...> wrote: > I attempted to follow your instructions and the ones on the wiki to build the package, and it fails to apply the patch. I get the following error: > > > Applying patch transform_fix.patch > patching file dix/getevents.c > Hunk #1 FAILED at 1078. > 1 out of 1 hunk FAILED -- rejects in file dix/getevents.c > Patch transform_fix.patch does not apply (enforce with -f) > make: *** [stampdir/patch] Error 1 > dpkg-buildpackage: error: debian/rules build gave error exit status 2 > debuild: fatal error at line 1350: > dpkg-buildpackage -rfakeroot -D -us -uc failed Wow. Color me impressed. You are much faster at that than I would have been. I'll console myself by thinking some of your Arch package skills were transferable. Which patch did you use? The one for the current xserver-core on the bug report or the backport by Nick? It looks like the package was happy with the addition of the patch and some adjustment there isn't what's needed. So you'd need to figure out why the patch isn't applying; it doesn't seem to be an offset issue. Hence the question about which patch. The X Server in Precise is a hybrid X Server by Debian/Ubuntu and consists of 1.11 and parts of 1.12. That might be the problem. So the easiest thing would be to try both patches. Otherwise you'd need to review the source code to find out why it is failing. I don't know if using the force switch, -f, it mentions to apply the patch is a good idea. Favux |
|
From: Favux ... <fav...@gm...> - 2012-10-11 02:34:46
|
No one has made a PPA of the X Server with the fix yet that I'm aware of. I really am not too interested in messing with it myself. What you would need to do is download the latest Precise X Server core deb package for your architecture and open it up. Add the patch, presumably to Debian patches, rename the package, zip it up and apply it. There are Ubuntu wiki pages that describe how to do that. I've been told that the X Server 1.13 in Quantal, which has the CTM fix, works with a static monitor setup. However there apparently is still a valuator bug affecting CTM if you rotate one of the monitors. If so it appears the fix was only a partial fix. Favux |
|
From: Zauber P. <za...@gr...> - 2012-10-11 01:51:18
|
Okay, long story short, I previously had a problem with my tablet's cursor "jumping" all over the place: http://sourceforge.net/mailarchive/message.php?msg_id=29074286 The solution was to either update to a later version of xorg or to apply a patch. Because Arch Linux's system for building packages is fairly intuitive to use, I was able to build and install an xorg-server package with the patches applied, and was then able to transparently upgrade to the fixed version of xorg during a routine system upgrade. However, since then Arch Linux has proven to be far too experimental for my tastes, especially with the large number of invasive changes for the core system and startup routines, which left me afraid that I would eventually install package updates and then be unable to boot my OS afterwords. The final straw was an upgrade to FontConfig, which caused a critical program to crash immediately upon execution. So, I switched to Lubuntu. For a while I didn't use my tablet, but now that I have started using it again, I'm finding that the bug with the cursor jumping has returned because Ubuntu is using an earlier xorg without the fix. So, my question is this: Is there an easy way to do one of the following: 1) Compile and install a patched version of xorg through the normal package-management system 2) Install a package for an upstream version of xorg And if there is no easy solution to the above, does anyone have a patched xorg package for x86_64 Precise Pangolin? |
|
From: Nikolai K. <sp...@gm...> - 2012-09-24 10:26:13
|
Hi everyone, Updated kernel packages are now available for download: https://sourceforge.net/projects/digimend/files/kernel-packages/kernel-patches-6 The new package versions are 3.2.0-31.50 for Ubuntu 12.04 and 3.0.0-26.42 for Ubuntu 11.10. Sincerely, Nick |
|
From: Favux ... <fav...@gm...> - 2012-09-18 19:33:03
|
That could be. But for Natty evdev axis inversion and swap was broken and Ubuntu said they wouldn't fix it. We had to scramble to implement CTM rotation for Magick Rotation as a replacement rotation method for evdev input tools. Jayhawk did the actual coding because he had the N-Trig digitizer on his tablet PC, which was about the only thing using evdev (for touch) then. I'm trying to wrap my head around him not encountering or missing this issue in Natty and having a hard time with it. He did patch ginn to fix touch drag but that's all I can recall. Favux |
|
From: Nikolai K. <sp...@gm...> - 2012-09-18 18:56:55
|
On 09/18/2012 06:20 PM, Favux ... wrote: > Found two Ubuntu Launchpad bug reports on the bug: > https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1005321 > https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/990466 > > In the first one Zachary Salzbank (zsalzbank) found the Bugzilla bug > report and tested and posted the patch (8-20-12). And he reported > that on the second Launchpad bug report. > > Most of what I see suggests the bug started in the X Server 1.11 > series but this Launchpad bug report for Natty seems to be dealing > with a similar or the same bug: > https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/774938 > So the problem may go back to X Server 1.10? Not sure how any > putative interaction between X input 2.1 and xf86-input-evdev fits in. > And the ubiquitous Zachary posts the patch here too. :) All these bugs seem to be the same bug. It could be as old as coordinate transformation matrix feature itself. But testing is needed to know for sure. Sincerely, Nick |
|
From: Favux ... <fav...@gm...> - 2012-09-18 18:30:25
|
Hi Nick, On Tue, Sep 18, 2012 at 1:22 PM, Nikolai Kondrashov <sp...@gm...> wrote: > Hi Dave, > >> Since Peter committed the fix on 5-16-12 I assume it is in X Server >> 1.12.2 (5-29-12). > > The earliest tag with this commit is xorg-server-1.12.99.901. You could see > that by running "git describe --contains 749a593e". The commit hash is > mentioned in the last bug comment on bugs.freedesktop.org. > > I assume the only real release including this fix is 1.13.0. Thanks Nick. I'll update my posts that the fix is in 1.13.0. I'm still trying to get oriented to the Xorg git browser. When I looked in the 1.12.2 tree I didn't see it but wasn't sure. > I didn't notify neither Debian nor Ubuntu. It would be good to do so. Ubuntu already knows, and I've been linking the reporters to the Launchpad bug reports on this. I've never made a Debian bug report because I don't run Debian. Dave |
|
From: Nikolai K. <sp...@gm...> - 2012-09-18 18:23:03
|
Hi Dave, On 09/18/2012 05:19 AM, Favux ... wrote: > Several users have reported encountering the Coordinate Transformation > Matrix bug for their graphic tablet's on xf86-input-evdev (causes the > cursor to jump around). > Bugzilla – Bug 49347 (5-1-12), "Jumping tablet cursor with > transformation matrix": > https://bugs.freedesktop.org/show_bug.cgi?id=49347 > DIGImend bug tracker: > http://sourceforge.net/tracker/?func=detail&aid=3530632&group_id=233297&atid=1089171 > > It is not clear to me if this bug was always present or is relatively > new. The user reports coming in seem to coincide with Ubuntu 12.04 > (Precise) or Mint 13 (Maya). And so the hybrid 1.11 and 1.12 X Server > they and Debian use. Sorry, I didn't investigate how old it is. > Since Peter committed the fix on 5-16-12 I assume it is in X Server > 1.12.2 (5-29-12). The earliest tag with this commit is xorg-server-1.12.99.901. You could see that by running "git describe --contains 749a593e". The commit hash is mentioned in the last bug comment on bugs.freedesktop.org. I assume the only real release including this fix is 1.13.0. > Has Debian been made aware of the bug and the > upstream fix? If so do you know if they are planning to backport the > fix? If Ubuntu is made aware of it (don't currently see a Launchpad > bug report) and knows there is Debian fix they may backport the fix to > Precise 12.04. Which would then get added to Mint 13 (Maya). I didn't notify neither Debian nor Ubuntu. It would be good to do so. Sincerely, Nick |
|
From: Favux ... <fav...@gm...> - 2012-09-18 15:20:46
|
Found two Ubuntu Launchpad bug reports on the bug: https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1005321 https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/990466 In the first one Zachary Salzbank (zsalzbank) found the Bugzilla bug report and tested and posted the patch (8-20-12). And he reported that on the second Launchpad bug report. Most of what I see suggests the bug started in the X Server 1.11 series but this Launchpad bug report for Natty seems to be dealing with a similar or the same bug: https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/774938 So the problem may go back to X Server 1.10? Not sure how any putative interaction between X input 2.1 and xf86-input-evdev fits in. And the ubiquitous Zachary posts the patch here too. :) Favux |
|
From: Favux ... <fav...@gm...> - 2012-09-18 02:19:18
|
Hi Nick, Several users have reported encountering the Coordinate Transformation Matrix bug for their graphic tablet's on xf86-input-evdev (causes the cursor to jump around). Bugzilla – Bug 49347 (5-1-12), "Jumping tablet cursor with transformation matrix": https://bugs.freedesktop.org/show_bug.cgi?id=49347 DIGImend bug tracker: http://sourceforge.net/tracker/?func=detail&aid=3530632&group_id=233297&atid=1089171 It is not clear to me if this bug was always present or is relatively new. The user reports coming in seem to coincide with Ubuntu 12.04 (Precise) or Mint 13 (Maya). And so the hybrid 1.11 and 1.12 X Server they and Debian use. Since Peter committed the fix on 5-16-12 I assume it is in X Server 1.12.2 (5-29-12). Has Debian been made aware of the bug and the upstream fix? If so do you know if they are planning to backport the fix? If Ubuntu is made aware of it (don't currently see a Launchpad bug report) and knows there is Debian fix they may backport the fix to Precise 12.04. Which would then get added to Mint 13 (Maya). Favux |
|
From: Nikolai K. <sp...@gm...> - 2012-09-09 08:00:33
|
Hi everyone, Updated kernel packages with kernel-patches v6 applied are now available for download: https://sourceforge.net/projects/digimend/files/kernel-packages/kernel-patches-6 This release adds support for two more UC-Logic tablets: Wireless Tablet TWHL850 and Tablet TWHA60. For a full list of supported tablets see corresponding kernel-patches release COMPATIBILITY file: http://digimend.git.sourceforge.net/git/gitweb.cgi?p=digimend/kernel-patches.git;a=blob_plain;f=COMPATIBILITY;hb=v6 Sincerely, Nick |
|
From: Nikolai K. <sp...@gm...> - 2012-09-09 07:52:47
|
Hi everyone, Kernel-patches v6 package is now available for download: http://sourceforge.net/projects/digimend/files/kernel-patches/digimend-kernel-patches-6.tar.gz/download This release adds support for slightly newer kernels, drops support for older ones and adds support for two more UC-Logic tablets: Wireless Tablet TWHL850 and Tablet TWHA60. See COMPATIBILITY file for a full list of supported tablets and kernel versions: http://digimend.git.sourceforge.net/git/gitweb.cgi?p=digimend/kernel-patches.git;a=blob_plain;f=COMPATIBILITY;hb=v6 Sincerely, Nick |
|
From: farzad 2. <far...@gm...> - 2012-08-25 20:22:20
|
hello it is Farzad. I have genius easy pen M406. I would like to help this project what can I do? thanks for your great job. best, Farzad -- ~ ~ ~ ~ ~ ~ ++++ +++++++ + + +++ ARZAD + OTONCHI + + + + + |
|
From: Nikolai K. <sp...@gm...> - 2012-08-11 18:38:27
|
Hi everyone, The updated kernel packages for Ubuntu are available for download: https://sourceforge.net/projects/digimend/files/kernel-packages/kernel-patches-5 The SourceForge download system issue is fixed, it seems, and both the latest and the previous packages are available now. Sincerely, Nick |
|
From: Nikolai K. <sp...@gm...> - 2012-08-10 21:31:25
|
Hi Viktoria, On Wed, Aug 8, 2012 at 2:46 PM, Viktoria S. <vik...@fr...> wrote: > Here is what I have got: > David Revoy is a fantastic designer. He uses linux and free/open source software for creating his art. > Here is his homepage:http://www.davidrevoy.com. Thanks! Indeed, his works are very good. I've linked to his home page from the post: https://plus.google.com/109969355357893765097/posts/BMNgQzsUHKH I didn't have time to filter through the rest of the links, sorry. Although I looked at many of them and there were many nice examples, I just needed a few. Thank you :) Sincerely, Nick |
|
From: Nikolai K. <sp...@gm...> - 2012-08-10 21:28:34
|
Hi Favux, On Mon, Aug 6, 2012 at 8:48 PM, Favux ... <fav...@gm...> wrote: > There are a gazillion of video demo.s. I don't hang out on the > deviantarts or other forums enough to know which are highly regarded. > Although there was one that got some raves a year or two ago. Painted > a dragon/monster and warrior maiden. That one was nice because he > switched back and forth between Gimp and Inkscape. Can't find the > bookmark though. Thanks! I've used some of your links in the post: https://plus.google.com/109969355357893765097/posts/BMNgQzsUHKH Sincerely, Nick |
|
From: Viktoria S. <vik...@fr...> - 2012-08-10 06:02:38
|
Hi! In the Kernel Team Meeting Minutes – Aug 07, 2012 (the specific post here: http://voices.canonical.com/kernelteam/2012/08/07/kernel-team-meeting-minutes-aug-07-2012/) in the Status: Quantal Development Kernel section they have mentioned: We’ve recently uploaded the 3.5.0-8.8 Quantal kernel to the release pocket. This upload includes misc bug fixes, upstream feature enablement for Intel HW, and a sync of AUFS (even though we plan to keep it disabled atm). This was also uploaded to the q-lts-backport [1] PPA to help facilitate testing of the 12.10 kernel in 12.04. We welcome anyone to please install, test, and let us know your feedback. [1] https://launchpad.net/~ubuntu-x-swat/+archive/q-lts-backport Kind regards: Viktoria Nikolai Kondrashov <sp...@gm...> írta: >Hi Viktoria,> > On 08/08/2012 02:56 PM, Viktoria S. wrote:> > I wanted to download the new packages but in the ubuntu 12.04 amd64 folder> > sourceforge says total 12 items but it lists only 6 (dated 28th of april).> > I am confused.....> > Apparently, SourceForge has some problem distributing the files to mirrors.> I hope it gets fixed soon.> > > And according to the ubuntu kernels there are some great news: they will> > backport the 12.10's kernel (which is based on 3.5 kernel) to the 12.04> > soon.> > (See this: http://voices.canonical.com/kernelteam/)> > That would be nice, haven't managed to find any evidence of this at the link> you provided. Could you give the link to the post?> > Sincerely,> Nick> |
|
From: Nikolai K. <sp...@gm...> - 2012-08-09 16:16:03
|
Hi Viktoria, On 08/08/2012 02:56 PM, Viktoria S. wrote: > I wanted to download the new packages but in the ubuntu 12.04 amd64 folder > sourceforge says total 12 items but it lists only 6 (dated 28th of april). > I am confused..... Apparently, SourceForge has some problem distributing the files to mirrors. I hope it gets fixed soon. > And according to the ubuntu kernels there are some great news: they will > backport the 12.10's kernel (which is based on 3.5 kernel) to the 12.04 > soon. > (See this: http://voices.canonical.com/kernelteam/) That would be nice, haven't managed to find any evidence of this at the link you provided. Could you give the link to the post? Sincerely, Nick |
|
From: Viktoria S. <vik...@fr...> - 2012-08-08 11:56:23
|
Hi! I wanted to download the new packages but in the ubuntu 12.04 amd64 folder sourceforge says total 12 items but it lists only 6 (dated 28th of april). I am confused..... And according to the ubuntu kernels there are some great news: they will backport the 12.10's kernel (which is based on 3.5 kernel) to the 12.04 soon. (See this: http://voices.canonical.com/kernelteam/) Regards: Viktoria Nikolai Kondrashov <sp...@gm...> írta: >Hi everyone,> > I've finally found some time to update Ubuntu kernel packages.> > I've implemented a couple of scripts to help me and it should be easier and> faster from now on.> > Please download the updated packages here:> https://sourceforge.net/projects/digimend/files/kernel-packages/kernel-patches-5/> > Sincerely,> Nick> > ------------------------------------------------------------------------------> Live Security Virtual Conference> Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/> _______________________________________________> DIGImend-users mailing list> DIG...@li...> https://lists.sourceforge.net/lists/listinfo/digimend-users> |
|
From: Viktoria S. <vik...@fr...> - 2012-08-08 11:46:44
|
Hi! Here is what I have got: David Revoy is a fantastic designer. He uses linux and free/open source software for creating his art. Here is his homepage:http://www.davidrevoy.com. Here are some Synfig Studio examples: http://www.synfig.org/cms/en/download/examples/ You can find the mypaint gallery here: http://mypaint.intilinux.com/?page_id=519 There are great art created with Krita on the Krita homepage:http://www.krita.org/ and also on the Gallery on the Krita forum: http://forum.kde.org/viewforum.php?f=138&sid=c1bccb4ba5fb827740e4b8a359c9d3f1 There are lots of tutorials on the internet. Here are some of the pages I usually check: According to GIMP: http://cgcookie.com/concept/category/software/gimp/ According to Krita: http://timotheegiet.com/blog/ http://www.youtube.com/playlist?list=PL8A96A483225EEBD4&feature=plcp Blender As far as I know the tablets are used in mainly 2 areas: sculpting and texture paint. http://cgcookie.com/blender/category/tutorials/sculpting-tutorials/ http://www.blendernerd.com/texture-painting/ http://blendtuts.com/quick_projection According to all kinds of open source software: http://www.davidrevoy.com/4-tutorials.html But as far as I know most of the people uses wacom tablets since they have better usability in linux. Kind regards: Viktoria Nikolai Kondrashov <sp...@gm...> írta: >Hi everyone,> > I want to try to attract more developers to the project, because my free> time is clearly not enough to catch up on the pile of work we have.> > For that I kindly ask you to share any impressive art or links to such art,> done with Linux and generic tablets, to show to prospective developers what> our work allows people to do, and maybe inspire them.> > Thank you in advance.> > Sincerely,> Nick> > ------------------------------------------------------------------------------> Live Security Virtual Conference> Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/> _______________________________________________> DIGImend-users mailing list> DIG...@li...> https://lists.sourceforge.net/lists/listinfo/digimend-users> |