search for: argb

Displaying 20 results from an estimated 72 matches for "argb".

Did you mean: arg
2011 May 03
2
adaptIntegrate - how to pass additional parameters to the integrand
Hello, I am trying to use adaptIntegrate function but I need to pass on a few additional parameters to the integrand. However, this function seems not to have the flexibility of passing on such additional parameters. Am I missing something or this is a known limitation. Is there a good alternative to such restrictions, if there at all are? Many thanks for your time. HC -- View this message in
2007 Feb 17
0
2 commits - doc/swfdec-sections.txt libswfdec/swfdec_color.h libswfdec/swfdec_player.c libswfdec/swfdec_player.h libswfdec/swfdec_player_internal.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c
...size", "cache size", "maximum cache size in bytes", 0, G_MAXUINT, 50 * 1024 * 1024, G_PARAM_READABLE)); - + g_object_class_install_property (object_class, PROP_BACKGROUND_COLOR, + g_param_spec_uint ("background-color", "background color", "ARGB color used to draw the background", + 0, G_MAXUINT, SWFDEC_COLOR_COMBINE (0xFF, 0xFF, 0xFF, 0xFF), G_PARAM_READWRITE)); /** * SwfdecPlayer::trace: @@ -820,6 +829,7 @@ swfdec_player_init (SwfdecPlayer *player player->actions = swfdec_ring_buffer_new_for_type (SwfdecPlayerActi...
2002 Jan 07
2
rsync-2.5.1 / popt patches
...ENVMS_AXP */ /* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING file accompanying popt source distributions, available from ftp://ftp.redhat.com/pub/code/popt */ @@ -330,7 +331,7 @@ for (i = os->next; i < os->argc; i++) { if (os->argb && PBM_ISSET(i, os->argb)) continue; if (*os->argv[i] == '-') continue; - if (--argx > 0) continue; + if (--argx != 0) continue; arg = os->argv[i]; if (delete) { if (os->argb == NULL) os->a...
2012 Apr 25
2
[LLVMdev] Crash in JIT
...(result) { printf("Fail: %s\n", err); return -1; } printf("JIT is %p\n", jit); LLVMGenericValueRef argM = LLVMCreateGenericValueOfInt(int32, 10, 0); LLVMGenericValueRef argX = LLVMCreateGenericValueOfInt(int32, 5, 0); LLVMGenericValueRef argB = LLVMCreateGenericValueOfInt(int32, 1, 0); LLVMGenericValueRef args[] = {argM, argX, argB}; LLVMGenericValueRef result2 = LLVMRunFunction(jit, func, 3, args); unsigned long long answer = LLVMGenericValueToInt(result2, 0); printf("And the answer is %d\n", (int)ans...
2012 Apr 25
0
[LLVMdev] Crash in JIT
...if (result) { printf("Fail: %s\n", err); return -1; } printf("JIT is %p\n", jit); LLVMGenericValueRef argM = LLVMCreateGenericValueOfInt(int32, 10, 0); LLVMGenericValueRef argX = LLVMCreateGenericValueOfInt(int32, 5, 0); LLVMGenericValueRef argB = LLVMCreateGenericValueOfInt(int32, 1, 0); LLVMGenericValueRef args[] = {argM, argX, argB}; LLVMGenericValueRef result2 = LLVMRunFunction(jit, func, 3, args); unsigned long long answer = LLVMGenericValueToInt(result2, 0); printf("And the answer is %d\n", (int)answer);...
2012 Jun 07
2
x11 icon and class
...ns. I am not sure if this was a conscious choice by r-core or simply a low priority. In case of the latter, I attach a patch against R-devel (as of 6 June) that specifies: 1) _NET_WM_ICON as a slightly tweaked version of Rlogo-5.png (48x48 pixels, circle filled-in with white to be legible; ARGB data hardcoded as a constant array in a new file "rlogo_icon.h"). 2) WM_CLASS (for reasons unclear to me, previously WM_CLASS was only set #ifndef USE_Xt) l As Ubuntu is the single most popular linux distribution, perhaps others will find this patch useful. I have tested on both 32...
2005 Dec 09
3
external pointers
...ocess ends. Could anyone give me some pointers? I haven't found much documentation. An earlier message suggested looking at simpleref.nw, but I can't find that file. So the overall pattern, from R, would look like opaque <- setup(arg1, arg2, ....) # setup calls a C fn docompute(arg1, argb, opaque) # many times. docompute also calls C # and then when I return opaque and the memory it's wrapping get #cleaned up. If necessary I could do teardown(opaque) # at the end "C" is actually C++ via a C interface, if that matters. In particular, the memory allocated will like...
2009 Nov 04
1
[PATCH] nv10/exa: Spring-cleaning
* Kill the A8+A8 hack. Recent enough X servers (>=1.7) fall back to ARGB glyphs for drivers not supporting A8 render targets. * Kill all the global state. It doesn't matter a lot yet but it might if we get multicard working at some point. * Other random clean-ups with no functional changes. Some numbers from x11perf -aa10text -aa24text -comppixwin10 -comppixwin...
2004 Dec 08
3
yuv2rgb
hi all, i'm trying to code a tool to get some images from a ogg/theora file .... so basically i need to get a frame and convert to rgb ... and here is my question (sorry, i'm newbe here) ... how to convert a yuv_buffer to a rgb matrix ? i tryied diferent ways but my mistakes are bassically cause i don't understant how yuv_buffer structure works ... anybody can help? thanks a lot.
2008 Apr 16
8
[Bug 15528] New: jpeg decoder allocation size overflows
...ind says: [for wookiemon.jpg] ==4516== Invalid write of size 1 ==4516== at 0x445D8F8: (within /usr/lib/liboil-0.3.so.0.1.0) ==4516== by 0x80497FF: jpeg_decoder_decode_entropy_segment (jpeg.c:503) ==4516== by 0x8049DEB: jpeg_decoder_decode (jpeg.c:683) ==4516== by 0x804B1E1: jpeg_decode_argb (jpeg_rgb_decoder.c:58) ==4516== by 0x8048A51: main (load.c:46) ==4516== Address 0x632C490 is 0 bytes after a block of size 0 alloc'd ==4516== at 0x442438B: malloc (vg_replace_malloc.c:149) ==4516== by 0x8049084: jpeg_decoder_init_decoder (jpeg.c:192) ==4516== by 0x8049CD3: jpeg_de...
2008 Aug 29
2
liboggplay and overlay video
> Here's the current state of the changes (not meant to apply yet, but > more or less there in terms of functionality). Comments welcome. No comments, so I assume there is no opposition to the way the RGB format is handled ? I'll finish/clean this off this weekend if so.
2006 Sep 01
2
SYSLINUX 3.30-pre1 released
...the addition of a few more commands (which can also be used in menu.c32 in this new version): MENU BACKGROUND file.png ... loads a background image in PNG format. MENU COLOR name ansi fg bg ... sets color <name> to <ansi> when used in text mode, or on the serial console, and to ARGB colors <fg> and <bg> in graphics mode. For example, #ffffffff is white with full opacity; #00000000 is fully transparent. One of the defaults (see below) would thus be written: menu color sel 0;7;37;40 #cf101010 #20ff8000 The current color names and defaults are currently as foll...
2007 Aug 03
1
Windows jumping on move
Hi, since few days i discover windows jumping sometimes until window is moved in git version. I had this issue with 0.5.0 also. That was a reason to move to git, there was no window jumping on move. But since few days i discover it again. Any body else ? -- Teresa Kalitowska IM jid:kvitka at kvitka.net
2006 Oct 01
1
gtk-window-decorator metacity opacity theme
hi, I made a small a patch for gtk-window-decorator which define default border alpha to zero when it use metacity theme. That allows while playing with the alpha attributes of the metacity themes to have transparent borders. here too the modified ?Human Ubuntu? theme and a screenshot to show the result. ps: sorry for my bad english -------------- next part -------------- A non-text attachment
2008 Mar 19
0
Nvidia 8600 Performance Issue
Hello all, I'm running a Dell XPS 1530M system with a 2.4 GHz Core 2 duo and Nvidia 8600M GT 256 MB graphics card with 4 GB RAM and Compiz 0.7.2 on OpenSuse 10.3 (KDE) with the Nvidia .169.12 drivers. I have all the usual fixes for Nvidia cards enabled (ARGB-GLX-visuals, Composite) but Compiz frequently slows down the system and certain windows take as much as 2 seconds to refresh. The benchmark tool frequently shows the fps dropping to an unusable 10-12 fps. Enabling animations makes the situation even worse. Performance is excellent with the KWin win...
2007 Feb 06
0
Branch 'interpreter' - 8 commits - libswfdec/swfdec_bits.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h libswfdec/swfdec_edittext.c libswfdec/swfdec_image.c libswfdec/swfdec_image.h libswfdec/swfdec_pattern.c libswfdec/swfdec_sprite.c test/dump.c
...} if (format == 5) { - - image_data = lossless (bits.ptr, bits.end - bits.ptr, 4 * image->width * image->height); - image->rowstride = image->width * 4; - - #if G_BYTE_ORDER == G_LITTLE_ENDIAN - { - int i, j; - /* image is stored in 0RGB format. We use ARGB/BGRA. */ - for (j = 0; j < image->height; j++) { - for (i = 0; i < image->width; i++) { - ptr[0] = ptr[3]; - ptr[1] = ptr[2]; - ptr[2] = ptr[1]; - ptr[3] = 255; - ptr += 4; - } + int i, j; - - image->dat...
2008 May 30
5
color management spec
As part of my GSoC project I have to work out a spec that covers how applications should communicate color management related properties between each other and the compositing manager. The main idea of the project is to let the compositing manager do the color management on behalf of the applications. But before that can happen, the applications have to tell the compositing manager how they want
2017 Dec 20
0
[ANNOUNCE] xorg-server 1.19.6
...ces: initialize memory Hector Martin (1): edid: fix off-by-one error in CEA mode numbering Michel Dänzer (1): present: Only send PresentCompleteNotify events to the presenting client Nikolay Martynov (1): XShmGetImage: fix censoring Olivier Fourdan (2): xwayland: Fix non-argb cursor conversion dix: avoid deferencing NULL PtrCtrl Peter Hutterer (1): config/udev: consider ID_INPUT_FOO=0 as 'unset' Thomas Hellstrom (3): glx: Work around a GLX_OML swap method in older dri drivers glx: Fix visual fbconfig matching with respect to swap method...
2005 Nov 08
0
Re: OggYUV
...only used. If someone wants to go crazy and design a franken-yuv format for some bizarre reason, then they can easily make another stream format... but you can pretty much count the ones people actually care about and that are used in 90% of cases on one hand, YV12 (4:2:0), YUY2(4:2:2), RGB24, ARGB and maybe RGB555. And if the format is enumerated, then all the other fields will be the same for both RGB and YUV. It will be simple, it doesn't open up the possibility that people can specify bizzare combinations of things that you have to check against, other wise fail, or do some unkno...
2005 Nov 08
3
Re: OggYUV
On Tue, Nov 08, 2005 at 06:08:25PM +0800, illiminable wrote: > Why not just make it OggRawFOURCC, do we really need one stream format for > rgb, and one for yuv ? [snip] > I just meant oggRaw, not fourcc. Oh, thank god you corrected this. :-) I was contemplating an "OggVid" format, and here is why I'm steering against it (though, yes, this has been a topic of