search for: veric

Displaying 8 results from an estimated 8 matches for "veric".

Did you mean: eric
2009 Apr 14
4
Linux Foundation removed all Theora videos from linux.com?
I've heard this second hand and haven't had the time to confirm its vericity. Can someone confirm this is the case? If so, what were these people thinking? Removing support for the only video format that is sure to be installed in every Linux box somehow promoves the OS adoption? You get a WTF award LF, congrats. -Ivo
2001 Aug 03
1
Text adjustment outside (0,1)
Funnily enough, it seems that adjustment of text in the verical direction is more flexible than in the horizontal. Horizontal adjustment parameters, seem to be set to the closest of 0 and 1 if they fall outside (0,1). Try e.g.: plot(0:1,0:1) for (a in seq(-5,5,0.5) ) text(0.5, 0.5, "Y", adj=c(0,a), cex=2, col="red" ) for (a in seq(-5,5,0....
2004 Sep 29
2
More on Anti-spam measures
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 The list server at shorewall.net is seeing a small but steady stream of quaranteened messages from anti-spam software that is asking the list server to respond and thus register itself as a legitimate source of email. I also receive these requests personally. Here''s an example: -
2006 Dec 13
2
why are my multiple box & whisker plots so small?
Hi all, I'm sure this is reallly basic, but I just can get it to work. I want to plot six box & whisker plots together to make one figure so that they appear one below the next. I can do this using >par(mfrow=c(6,1)), but each box&whisker plots end up vertically compressed to the point where I can't see the actual bars, and there is a large amount of white space between each
2009 Feb 03
2
ThinkCell type waterfall charts in R?
Hi all, with PowerPoint and ThinkCell one can draw something they call waterfall chart and it looks like this: http://www.think-cell.com/products/images/waterfall.gif I found discussions on waterfall charts in the archive of this mailinglist, but unfortunately they looked totally different. Other names for this type of plot seem to be bridge chart, cascade chart, stair case chart, etc. but
2011 Oct 10
2
2 remaining patches in my patch queue that can be merged
Hi, Here I post these 2 misc patches. Best regards, Maxim Levitsky
2011 Oct 09
11
[PATCH 01/10]: nouveau: assorted fixes
Hi, Here is my patch queue I accumulated over quite a long time. Patches 1-6 are bugfixes, and rest is mostly RFC. Comments are welcome. Best regards, Maxim Levitsky
2010 Jan 18
1
[PATCH 1/2] nv30-nv40: Rewrite primitive splitting and emission
...m/drivers/nouveau/nouveau_util.h +++ b/src/gallium/drivers/nouveau/nouveau_util.h @@ -1,63 +1,124 @@ #ifndef __NOUVEAU_UTIL_H__ #define __NOUVEAU_UTIL_H__ -/* Determine how many vertices can be pushed into the command stream. - * Where the remaining space isn't large enough to represent all verices, - * split the buffer at primitive boundaries. +// output v[global_start] before the chunk +#define SPLIT_BEGIN_WITH_FIRST 1 + +// output v[global_start] before the chunk, with edgeflag off +#define SPLIT_BEGIN_WITH_FIRST_EDGEFLAG_OFF 2 + +// output v[global_start] after the chunk +#define SPLIT_...