search for: 1bpp

Displaying 9 results from an estimated 9 matches for "1bpp".

Did you mean: 16bpp
2017 Dec 11
0
NHW Project - lower quality settings - high compression
...ut it doesn't work at all (and I still haven't removed it...).Would you know an efficient processing, algorithm that removes aliaising? It would help me a lot!!! Because the next quality settings could be here: -l3,-l4,-l5,-l6 with -5Ko,-10Ko,-15Ko,-20Ko corresponding roughly to 1.5bpp->1bpp (for image not video) with the processings explained above. Then for the next settings, I could start to increase quantization of the DC parts, and have a better analysis of wavelet coefficients, this is the most difficult part. So again, I think it will finally not be so difficult to go down to...
2007 May 04
0
[1007] trunk/wxruby2/swig: Fixed Wx::Image#scale and rescale signature, also added needed constants.
...wx/imaglist.h> </span><span class="cx"> #include <wx/laywin.h> </span><span class="cx"> #include <wx/imagbmp.h> </span><span class="lines">@@ -2120,7 +2121,17 @@ </span><span class="cx"> wxBMP_1BPP_BW = 2 // 1bpp, black & white from red </span><span class="cx"> }; </span><span class="cx"> </span><ins>+//** ---------------------------------------------------------------------------- ** +// Start constants from wx/image.h +//...
2012 Jul 17
0
Wine release 1.5.9
...e instead of a handmade one. windowscodecs: Test pixel format of the loaded TIFF image. windowscodecs: Avoid casting IWICFormatConverter to IWICBitmapSource. windowscodecs: Use predefined WICBitmapPaletteTypeFixedBW palette instead of a hand-made one. gdiplus: Make sure that 1bpp bitmap images get loaded in native format. gdiplus: Fix palette flags for a not indexed 1-bpp image. gdiplus: Make sure that GdipBitmapLockBits stores valid lockmode. gdiplus: Add some tests for GdipBitmapLockBits/GdipBitmapUnlockBits. gdiplus: Use public ColorPalette struct...
2017 Sep 29
0
Wine release 2.18
...il stubs. Anton Romanov (2): secur32: Fix race between schan_(Encrypt|Decrypt)Message. secur32: Protect SSLRead/Write with cs on OSX. Dmitry Timoshkov (4): windowscodecs: Add support for palette image formats to PNG encoder. windowscodecs/tests: Add some tests for encoding 1bpp/8bpp images with a palette. ole32: Add a trace to IDataObject::GetData. ole32: Trace clsid in IStorage::SetClass. Fabian Maurer (16): strmiids: Add evr interface GUIDS. mfuuid: Add library. comctl32/taskdialog: Initial support for callback procedure. api-ms-win-...
2016 Jul 22
0
Wine release 1.9.15
...s a string when it is used in error messages. reg: Handle a special case for Default values and 'reg query'. Huw D. M. Davies (10): gdi32: Add back the extents test. gdi32: Use the get_mono_dc_colors() helper. gdi32: Add a mask_rect primitive for use when the src is 1bpp. gdi32: Use alloc_gdi_path() to create the path. gdi32: Change get_gdi_flat_path() to return an opaque path pointer. gdi32: Reduce the number of memory allocations required for gdi paths. gdi32: Copy 1-bpp pixels one byte at a time. gdi32: Add helpers to allocate, grow...
2009 Mar 08
4
[PATCH 1/5] nv50: implement wfb
...nc(xf86Screens[pScreen->myNum]); } static Bool @@ -351,17 +355,16 @@ nouveau_exa_modify_pixmap_header(PixmapPtr ppix, int width, int height, if (!nvpix->bo && nvpix->size) { uint32_t cpp = ppix->drawable.bitsPerPixel >> 3; - /* At some point we should just keep 1bpp pixmaps in sysram */ uint32_t flags = NOUVEAU_BO_VRAM; int ret; if (pNv->Architecture >= NV_ARCH_50 && cpp) { - uint32_t aw = (width + 7) & ~7; - uint32_t ah = (height + 7) & ~7; + uint32_t ah = (height + 3) & ~3; flags |= NOUVEAU_BO_TILED; - dev...
2012 Jun 22
0
Wine release 1.5.7
...ntprint/tests: Fix some typos. J?zef Kucia (9): d3dx9/tests: Add tests for D3DXCreateRenderToEnvMap. d3dx9: Add ID3DXRenderToEnvMap interface stub. d3dx9/tests: Improve test failure messages for check_{ref, release}. d3dx9/tests: Use inline functions instead of check_pixel_{1bpp, 2bpp, 4bpp} macros. d3dx9: Get rid of ID3DXFontImpl. d3dx9/tests: Add tests for ID3DXFont::PreloadText. d3dx9/tests: Add tests for ID3DXFont::GetGlyphData. d3dx9: Recognize X8B8G8R8 pixel format in DDS files. d3dx9/tests: Improve test failure messages for check_dds_pi...
2011 Jun 24
0
Wine release 1.3.23
...quest per-surface palettes in the client libs. Huw Davies (16): gdi32: Add helpers to retrieve foreground and background colours. gdi32: Add support for 1 bpp dibs. gdi32/tests: Add tests for 1 bpp dibs. gdi32: Add support for 1 bpp brushes. gdi32/tests: Add tests for 1bpp brushes. gdi32: Add support for hatched brushes. gdi32/tests: Add tests for hatched brushes. gdi32/tests: Call ReleaseDC not DeleteDC. gdi32/tests: Add broken behaviour on nt4 sp1-5. gdi32/tests: Add broken behaviour on nt4 sp1 and 2. gdi32/tests: Add some broken...
2008 Jul 11
0
Wine release 1.1.1
...(1): opengl32: glGetString() should return NULL on NULL context. Michael Karcher (7): crypt32: ComparePublicKeyInfo must ignore the leading zero. crypt32: Remove duplicate MS test root key. gdi32: Fix double->fixpoint conversion in freetype.c. gdi32: Fix palette of 1bpp DIB in GetDIBits. winex11: Fix GetDIBits of 1 bit DDBs. winex11: Made local constant static. Add support for compatibility mode in WineEngCreateFontInstance. Michael Stefaniuc (4): gdiplus: Remove redundant NULL check before GdipFree (Smatch). riched20: Fix typo....