summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRick Tillery <rtillery@ti.com>2012-02-23 09:42:19 -0600
committerRick Tillery <rtillery@ti.com>2012-02-23 09:42:19 -0600
commit99f6605e12184de4066ef4e207ecbab1f57b3ede (patch)
tree49025038f3cb1c80912780c6947105560ef292e8
parent329ce1af0bb24398fad3f2d1cadcfb731576d8e1 (diff)
downloadhardware_ti_omap4-99f6605e12184de4066ef4e207ecbab1f57b3ede.zip
hardware_ti_omap4-99f6605e12184de4066ef4e207ecbab1f57b3ede.tar.gz
hardware_ti_omap4-99f6605e12184de4066ef4e207ecbab1f57b3ede.tar.bz2
TICPU: Release 2.0.0.9
* Improved structure validation checks. * Fixed two issues that could cause access of bvbltparams members associated with unused surfaces. * Added validation of dithermode when doing fills (dithering not currently supported for fills). * Added support for BVDITHER_GOOD_ON, BVDITHER_BETTER_ON, and BVDITHER_BEST_ON. * Fixed issue with rotated surfaces and fills. * Added 4 new conversions: RGBx24 to UYVY UYVY to RGBx24 NV12 to RGBx24 NV12 to BGRx24 * Added scaled RGBA24 SRC1OVER blend into RGB16 (source2 and destination must be the same). * Added scaled RGBA24 SRC1OVER blend into RGB16 with dithering (source2 and destination must be the same). * Changed method of non-interpolated upscaling for better pixel distribution. * Fixed incorrect color in RGBx24 to RGB16 dithering for images without a multiple of 8 width. Change-Id: I173e624ea8419e7a2dabd600dc7b11b8ef2ef1b1 Signed-off-by: Rick Tillery <rtillery@ti.com>
-rwxr-xr-xticpu/doc/android/BLTsville-Android-Release-Notes.html2793
-rwxr-xr-xticpu/doc/linux/BLTsville-Linux-Release-Notes.html2765
-rwxr-xr-xticpu/lib/android/libbltsville_ticpu.2.0.0.9.so (renamed from ticpu/lib/android/libbltsville_ticpu.2.0.0.8.so)bin139242 -> 146878 bytes
l---------ticpu/lib/android/libbltsville_ticpu.so2
l---------ticpu/lib/linux/libbltsville_ticpu.so2
-rwxr-xr-xticpu/lib/linux/libbltsville_ticpu.so.2.0.0.9 (renamed from ticpu/lib/linux/libbltsville_ticpu.so.2.0.0.8)bin141876 -> 150116 bytes
6 files changed, 2814 insertions, 2748 deletions
diff --git a/ticpu/doc/android/BLTsville-Android-Release-Notes.html b/ticpu/doc/android/BLTsville-Android-Release-Notes.html
index d3ac411..6c174e9 100755
--- a/ticpu/doc/android/BLTsville-Android-Release-Notes.html
+++ b/ticpu/doc/android/BLTsville-Android-Release-Notes.html
@@ -10,55 +10,52 @@
Welcome to BLTsville </title>
<style type="text/css">
.Title {
- font-size: xx-large;
- font-weight: bold;
+ font-size: xx-large;
+ font-weight: bold;
}
.Subtitle {
- font-size: x-large;
- font-weight: bold;
+ font-size: x-large;
+ font-weight: bold;
}
.Section {
- font-size: large;
- font-weight: bold;
+ font-size: large;
+ font-weight: bold;
}
.Header {
- font-weight: bold;
+ font-weight: bold;
}
.ctr_small {
- text-align: center;
- font-size: small;
+ text-align: center;
+ font-size: small;
}
.rt {
- text-align: right;
+ text-align: right;
}
.Code {
- font-family: "Courier New", Courier, monospace;
+ font-family: "Courier New", Courier, monospace;
}
-.style1 {
- font-family: "Times New Roman";
-}
-.style2 {
- margin-left: 80px;
+.list {
+ margin-left: 80px;
}
.note {
- font-size: large;
- font-weight: bold;
- font-style: italic;
- font-family: Arial, Helvetica, sans-serif;
+ font-size: large;
+ font-weight: bold;
+ font-style: italic;
+ font-family: Arial, Helvetica, sans-serif;
}
-.style3 {
- margin-left: 40px;
+.indent {
+ margin-left: 40px;
}
</style>
</head>
<body>
<span class="Title">BLTsville for Android</span>
<p class="Subtitle">
- CPU Implementation - Version 2.0.0.8
+ CPU Implementation - Version 2.0.0.9
</p>
<hr/>
<p>
- <span class="style1">Copyright © 2011 </span>Texas Instruments, Inc.
+ Copyright © 2011 Texas Instruments, Inc.
</p>
<p>
By using this software you agree that you have read, understood, and agree to be bound by the terms in the accompanying <a href="../license">
@@ -89,7 +86,7 @@ Welcome to BLTsville </title>
<ul>
<li>Blend types <span class="Code">BVBLEND_SRC1</span> and <span class="Code">BVBLEND_SRC2</span> are functionally equivalent to ROPs of <span class="Code">0xCCCC</span> and <span class="Code">0xF0F0</span>, respectively.&nbsp; But these two ways of specifying the same operation currently take two different code paths, so:</li>
</ul>
- <ol class="style2">
+ <ol class="list">
<li>When a conversion is supported by both paths, the performance of them will differ.&nbsp; In general, the ROP path will be faster.</li>
<li>When a conversion is not supported in the ROP path, it may be supported in the blend path.</li>
<li>When a conversion is supported in the blend path, it may not be supported in the ROP path.</li>
@@ -104,27 +101,47 @@ Welcome to BLTsville </title>
<tr>
<td>
<p>
+ 2.0.0.9</p>
+ <ul>
+ <li>Improved structure validation checks.</li>
+ <li>Fixed two issues that could cause access of <span class="Code">bvbltparams</span> members associated with unused surfaces.</li>
+ <li>Added validation of <span class="Code">dithermode</span> when doing fills (dithering not currently supported for fills).</li>
+ <li>Added support for <span class="Code">BVDITHER_GOOD_ON</span>, <span class="Code">BVDITHER_BETTER_ON</span>, and <span class="Code">BVDITHER_BEST_ON</span>.</li>
+ <li>Fixed issue with rotated surfaces and fills.</li>
+ <li>Added 4 new conversions:<ul>
+ <li>RGBx24 to UYVY</li>
+ <li>UYVY to RGBx24</li>
+ <li>NV12 to RGBx24</li>
+ <li>NV12 to BGRx24</li>
+ </ul>
+ </li>
+ <li>Added scaled RGBA24 SRC1OVER blend into RGB16 (source2 and destination must be the same).</li>
+ <li>Added scaled RGBA24 SRC1OVER blend into RGB16 with dithering (source2 and destination must be the same).</li>
+ <li>Changed method of non-interpolated upscaling for better pixel distribution.</li>
+ <li>Fixed incorrect color in RGBx24 to RGB16 dithering for images without a multiple of 8 width.</li>
+ </ul>
+ <p>
2.0.0.8</p>
- <ul>
- <li>Fixed occasional failure to initialize that caused return of BVERR_RSRC.</li>
- </ul>
+ <ul>
+ <li>Fixed occasional failure to initialize that caused return of BVERR_RSRC.</li>
+ </ul>
<p>
2.0.0.7</p>
- <ul>
- <li>Fixed typedef of bv_unmap member of bvbuffmap structure (bvinternal.h issue).</li>
- <li>Fixed access-after-free bug in bv_unmap().</li>
- <li>Changed method of handling over-read on last source line during scaling.</li>
- </ul>
+ <ul>
+ <li>Fixed typedef of bv_unmap member of bvbuffmap structure (bvinternal.h issue).</li>
+ <li>Fixed access-after-free bug in bv_unmap().</li>
+ <li>Changed method of handling over-read on last source line during scaling.</li>
+ </ul>
<p>
2.0.0.6</p>
- <ul>
- <li>Added more dither validation.</li>
- <li>Extended non-interpolated scaling to all supported 32-bit formats.</li>
- <li>Added ordered 2x2/4x4 dither for RGBx24 to RGB16.</li>
- <li>Fixed issue with NV12 rectangle offset that caused incorrect colors on right edge of images.</li>
- <li>Added support for ALPHA8 as mask (instead of MONO8).</li>
- </ul>
- <p>
+ <ul>
+ <li>Added more dither validation.</li>
+ <li>Extended non-interpolated scaling to all supported 32-bit formats.</li>
+ <li>Added ordered 2x2/4x4 dither for RGBx24 to RGB16.</li>
+ <li>Fixed issue with NV12 rectangle offset that caused incorrect colors on right edge of images.</li>
+ <li>Added support for ALPHA8 as mask (instead of MONO8).</li>
+ </ul>
+ <p>
2.0.0.5</p>
<ul>
<li>Fix for clipping regression of negative coordinates and clips result in NULL rectangles.</li>
@@ -163,7 +180,7 @@ Welcome to BLTsville </title>
<li>Rotation</li>
</ul>
</li>
- <li>Fix for UYVY/VYUY 180<span class="style1">° rotation</span></li>
+ <li>Fix for UYVY/VYUY 180° rotation</li>
<li>Fix for rotation normalization (calculating difference between surface orientations)</li>
<li>Removed double-rotation in some cases</li>
<li>Added check for NULL and inverted rectangles</li>
@@ -192,7 +209,7 @@ Welcome to BLTsville </title>
<p>
2.0.0.0
</p>
- <p class="style3">
+ <p class="indent">
Initial release
</p>
</td>
@@ -204,26 +221,26 @@ Welcome to BLTsville </title>
<table border="1" cellpadding="2" cellspacing="2">
<tr>
<td>
- .../lib/android/libbltsville_cpu.so
+ .../lib/android/libbltsville_cpu.so
</td>
<td>
- Client entry point for CPU-based implementations. Softlink to libbltsville_ticpu.so.
+ Client entry point for CPU-based implementations. Softlink to libbltsville_ticpu.so.
</td>
</tr>
<tr>
<td>
- .../lib/android/libbltsville_ticpu.so
+ .../lib/android/libbltsville_ticpu.so
</td>
<td>
- Client entry point for special cases.&nbsp; Softlink to libbltsville_ticpu.2.0.0.8.so.&nbsp; (Most clients should not use this entry.)
+ Client entry point for special cases.&nbsp; Softlink to libbltsville_ticpu.2.0.0.9.so.&nbsp; (Most clients should not use this entry.)
</td>
</tr>
<tr>
<td>
- .../lib/android/libbltsville_ticpu.2.0.0.8.so
+ .../lib/android/libbltsville_ticpu.2.0.0.9.so
</td>
<td>
- Version 2.0.0.8 of the TI BLTsville CPU-based library of 2-D functions for Android.&nbsp; (Do not directly load this file.)
+ Version 2.0.0.9 of the TI BLTsville CPU-based library of 2-D functions for Android.&nbsp; (Do not directly load this file.)
</td>
</tr>
</table>
@@ -251,12 +268,12 @@ Welcome to BLTsville </title>
<table border="1" style="background-color:#EBEBEB">
<tr>
<td colspan="25" class="Header">
- Solid Fill (1x1 Source 1)
+ Solid Fill (1x1 Source 1)
</td>
</tr>
<tr>
<td colspan="25">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -415,20 +432,20 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table style="background-color:#EBEBEB" border="1">
<tr>
<td colspan="26" class="Header">
- Color Space Conversion
+ Color Space Conversion
</td>
</tr>
<tr>
<td>
- Source&nbsp;1
+ Source&nbsp;1
</td>
<td colspan="25">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -1056,7 +1073,7 @@ Welcome to BLTsville </title>
&nbsp;
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -1891,13 +1908,13 @@ Welcome to BLTsville </title>
<img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
<img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -2033,7 +2050,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- IYUV/I420
+ IYUV/I420
</td>
<td>
&nbsp;
@@ -2128,16 +2145,16 @@ Welcome to BLTsville </title>
<img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -2273,26 +2290,26 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" cellspacing="2" style="background-color:#EBEBEB">
<tr>
<td colspan="2" class="Header">
- Color Space Conversion<br/>
+ Color Space Conversion<br/>
(with Dither)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
RGB16
@@ -2303,37 +2320,37 @@ Welcome to BLTsville </title>
BGRx24
</td>
<td>
- <img src="../linux/check.png" alt="+"/>
+ <img src="check.png" alt="+"/>
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
RGBx24</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="13" class="Header">
- Scaling: Non-interpolated<br/>
+ Scaling: Non-interpolated<br/>
(NEAREST_NEIGHBOR)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td colspan="12">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
BGR124
@@ -2372,7 +2389,7 @@ Welcome to BLTsville </title>
&nbsp;
</td>
<td>
- <img src="../linux/check.png" alt="+"/>
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -2402,7 +2419,7 @@ Welcome to BLTsville </title>
BGRx24
</td>
<td>
- <img src="../linux/check.png" alt="+"/>
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -2438,7 +2455,7 @@ Welcome to BLTsville </title>
&nbsp;
</td>
<td>
- <img src="../linux/check.png" alt="+"/>
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -2474,7 +2491,7 @@ Welcome to BLTsville </title>
&nbsp;
</td>
<td>
- <img src="../linux/check.png" alt="+"/>
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -2510,7 +2527,7 @@ Welcome to BLTsville </title>
&nbsp;
</td>
<td>
- <img src="../linux/check.png" alt="+"/>
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;</td>
@@ -2541,7 +2558,7 @@ Welcome to BLTsville </title>
<td>
&nbsp;</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
<td>
&nbsp;</td>
<td>
@@ -2571,7 +2588,7 @@ Welcome to BLTsville </title>
<td>
&nbsp;</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
<td>
&nbsp;</td>
<td>
@@ -2601,7 +2618,7 @@ Welcome to BLTsville </title>
<td>
&nbsp;</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
<td>
&nbsp;</td>
<td>
@@ -2631,7 +2648,7 @@ Welcome to BLTsville </title>
<td>
&nbsp;</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
<td>
&nbsp;</td>
<td>
@@ -2661,7 +2678,7 @@ Welcome to BLTsville </title>
<td>
&nbsp;</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
<td>
&nbsp;</td>
<td>
@@ -2691,7 +2708,7 @@ Welcome to BLTsville </title>
<td>
&nbsp;</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
<td>
&nbsp;</td>
<td>
@@ -2721,7 +2738,7 @@ Welcome to BLTsville </title>
<td>
&nbsp;</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
<td>
&nbsp;</td>
</tr>
@@ -2751,29 +2768,29 @@ Welcome to BLTsville </title>
<td>
&nbsp;</td>
<td>
- <img src="../linux/check.png" alt="+"/></td>
+ <img src="check.png" alt="+"/></td>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" cellspacing="2" style="background-color:#EBEBEB">
<tr>
<td colspan="7" class="Header">
- Rotation
+ Rotation
</td>
</tr>
<tr>
<td>
- Angle
+ Angle
</td>
<td colspan="6">
- Format
+ Format
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
LUT8
@@ -2796,7 +2813,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- 90 Degrees
+ 90 Degrees
</td>
<td>
<img src="check.png" alt="+"/>*
@@ -2819,7 +2836,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- 180 Degrees
+ 180 Degrees
</td>
<td>
<img src="check.png" alt="+"/>*
@@ -2842,7 +2859,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- 270 Degrees
+ 270 Degrees
</td>
<td>
<img src="check.png" alt="+"/>*
@@ -2865,135 +2882,135 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- * = Rotation has width/height limitations.. See the chart below
+ * = Rotation has width/height limitations.. See the chart below
</p>
<table border="1" cellpadding="2" cellspacing="2" style="background-color:#EBEBEB">
<tr>
<td colspan="7" class="Header">
- Rotation Limitations
+ Rotation Limitations
</td>
</tr>
<tr>
<td>
- Angle
+ Angle
</td>
<td colspan="6">
- Format
+ Format
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
- LUT8
+ LUT8
</td>
<td>
- RGB16
+ RGB16
</td>
<td>
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
- YUYV/YUY2
+ YUYV/YUY2
</td>
<td>
- IYUV/I420
+ IYUV/I420
</td>
<td>
- NV12
+ NV12
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
- 90 Degrees
+ 90 Degrees
</td>
<td>
- Multiple of 4 x 8&nbsp;
+ Multiple of 4 x 8&nbsp;
</td>
<td>
- Multiple of 8 x 8
+ Multiple of 8 x 8
</td>
<td>
- Multiple of 2 x 8
+ Multiple of 2 x 8
</td>
<td>
- Multiple of 2 x 8
+ Multiple of 2 x 8
</td>
<td>
- Multiple of 8 x 16
+ Multiple of 8 x 16
</td>
<td>
- Multiple of 16 x 16
+ Multiple of 16 x 16
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
- 180 Degrees
+ 180 Degrees
</td>
<td>
- Multiple of 16 x 1
+ Multiple of 16 x 1
</td>
<td>
- Multiple of 8 x 1
+ Multiple of 8 x 1
</td>
<td>
- Multiple of 8 x 1
+ Multiple of 8 x 1
</td>
<td>
- Multiple of 8 x 1
+ Multiple of 8 x 1
</td>
<td>
- Multiple of 32 x 2
+ Multiple of 32 x 2
</td>
<td>
- Multiple of 16 x 2
+ Multiple of 16 x 2
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
- 270 Degrees
+ 270 Degrees
</td>
<td>
- Multiple of 4 x 8
+ Multiple of 4 x 8
</td>
<td>
- Multiple of 8 x 8
+ Multiple of 8 x 8
</td>
<td>
- Multiple of 2 x 8
+ Multiple of 2 x 8
</td>
<td>
- Multiple of 2 x 8
+ Multiple of 2 x 8
</td>
<td>
- Multiple of 8 x 16
+ Multiple of 8 x 16
</td>
<td>
- Multiple of 16 x 16
+ Multiple of 16 x 16
</td>
</tr>
</table>
<p>
- (Rotation does not support scaling.)
+ (Rotation does not support scaling.)
</p>
<p>
- &nbsp;
+ &nbsp;
</p>
<p>
- (Blends do not support clipping or scaling.)<br/>
+ (Blends do not support clipping or scaling.)<br/>
(Source 1 or Source 2 can be a 1x1 rectangle for solid color.)<br/>
(Color space conversion is performed as indicated.)
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="9" class="Header">
- Blend: CLEAR
+ Blend: CLEAR
</td>
</tr>
<tr>
<td colspan="9">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -3056,25 +3073,25 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="10" class="Header">
- Blend: SRC1
+ Blend: SRC1
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td colspan="9">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
RGB16
@@ -3426,25 +3443,25 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="10" class="Header">
- Blend: SRC2
+ Blend: SRC2
</td>
</tr>
<tr>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
RGB16
@@ -3796,24 +3813,24 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="11" class="Header">
- Blend: SRC1OVER<br/>
+ Blend: SRC1OVER<br/>
(uses only Source 1 and Source 2 alphas, if present)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9" rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -3853,7 +3870,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td colspan="1" rowspan="10" class="rt">
- BGRA24
+ BGRA24
</td>
<td class="rt">
RGB16
@@ -4176,7 +4193,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td colspan="1" rowspan="10" class="rt">
- RGBA24
+ RGBA24
</td>
<td class="rt">
RGB16
@@ -4499,7 +4516,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td colspan="1" rowspan="10" class="rt">
- nBGRA24
+ nBGRA24
</td>
<td class="rt">
RGB16
@@ -4822,7 +4839,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td colspan="1" rowspan="10" class="rt">
- nRGBA24
+ nRGBA24
</td>
<td class="rt">
RGB16
@@ -5145,67 +5162,67 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="11" class="Header">
- Blend: SRC1OVER | GLOBAL<br/>
+ Blend: SRC1OVER | GLOBAL<br/>
(uses global alpha as well as source 1 and source 2 alphas, if present)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9" rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- RGB16
+ RGB16
</td>
<td>
- BGR24
+ BGR24
</td>
<td>
- RGB24
+ RGB24
</td>
<td>
- BGR024
+ BGR024
</td>
<td>
- RGB024
+ RGB024
</td>
<td>
- BGR124
+ BGR124
</td>
<td>
- RGB124
+ RGB124
</td>
<td>
- BGRA24
+ BGRA24
</td>
<td>
- RGBA24
+ RGBA24
</td>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB16
+ RGB16
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5237,7 +5254,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5269,7 +5286,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5301,7 +5318,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5333,7 +5350,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5365,28 +5382,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5397,28 +5414,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5429,28 +5446,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5461,28 +5478,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5493,7 +5510,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5525,10 +5542,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGR24
+ BGR24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5560,7 +5577,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5592,7 +5609,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5624,7 +5641,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5656,7 +5673,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5688,28 +5705,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5720,28 +5737,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5752,28 +5769,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5784,28 +5801,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5816,7 +5833,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5848,10 +5865,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB24
+ RGB24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5883,7 +5900,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5915,7 +5932,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5947,7 +5964,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5979,7 +5996,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6011,28 +6028,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6043,28 +6060,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6075,28 +6092,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6107,28 +6124,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6139,7 +6156,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6171,10 +6188,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRx24
+ BGRx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6206,7 +6223,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6238,7 +6255,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6270,7 +6287,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6302,7 +6319,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6334,28 +6351,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6366,28 +6383,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6398,28 +6415,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6430,28 +6447,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6462,7 +6479,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6494,10 +6511,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBx24
+ RGBx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6529,7 +6546,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6561,7 +6578,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6593,7 +6610,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6625,7 +6642,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6657,28 +6674,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6689,28 +6706,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6721,28 +6738,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6753,28 +6770,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6785,7 +6802,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6817,10 +6834,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRA24
+ BGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6852,7 +6869,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6884,7 +6901,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6916,7 +6933,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6948,7 +6965,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6980,28 +6997,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7012,28 +7029,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7044,28 +7061,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7076,28 +7093,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7108,7 +7125,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7140,10 +7157,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBA24
+ RGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7175,7 +7192,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7207,7 +7224,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7239,7 +7256,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7271,7 +7288,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7303,28 +7320,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7335,28 +7352,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7367,28 +7384,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7399,28 +7416,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7431,7 +7448,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7463,10 +7480,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nBGRA24
+ nBGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7498,7 +7515,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7530,7 +7547,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7562,7 +7579,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7594,7 +7611,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7626,28 +7643,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7658,28 +7675,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7690,28 +7707,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7722,28 +7739,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7754,7 +7771,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7786,10 +7803,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nRGBA24
+ nRGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7821,7 +7838,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7853,7 +7870,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7885,7 +7902,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7917,7 +7934,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7949,28 +7966,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7981,28 +7998,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8013,28 +8030,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8045,28 +8062,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8077,7 +8094,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8109,10 +8126,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8144,7 +8161,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8176,7 +8193,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8208,7 +8225,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8240,7 +8257,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8272,28 +8289,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8304,28 +8321,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8336,28 +8353,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8368,28 +8385,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8400,7 +8417,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8432,68 +8449,68 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="11" class="Header">
- Blend: SRC1OVER<br/>
+ Blend: SRC1OVER<br/>
(uses mask alpha&nbsp;as well as source 1 and source 2 alphas, if present)<br/>
(only mask format of ALPHA8 is supported)<br/>
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9" rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- RGB16
+ RGB16
</td>
<td>
- BGR24
+ BGR24
</td>
<td>
- RGB24
+ RGB24
</td>
<td>
- BGR024
+ BGR024
</td>
<td>
- RGB024
+ RGB024
</td>
<td>
- BGR124
+ BGR124
</td>
<td>
- RGB124
+ RGB124
</td>
<td>
- BGRA24
+ BGRA24
</td>
<td>
- RGBA24
+ RGBA24
</td>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB16
+ RGB16
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8525,7 +8542,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8557,7 +8574,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8589,7 +8606,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8621,7 +8638,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8653,28 +8670,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8685,28 +8702,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8717,28 +8734,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8749,28 +8766,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8781,7 +8798,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8813,10 +8830,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGR24
+ BGR24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8848,7 +8865,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8880,7 +8897,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8912,7 +8929,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8944,7 +8961,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8976,28 +8993,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9008,28 +9025,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9040,28 +9057,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9072,28 +9089,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9104,7 +9121,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9136,10 +9153,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB24
+ RGB24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9171,7 +9188,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9203,7 +9220,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9235,7 +9252,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9267,7 +9284,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9299,28 +9316,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9331,28 +9348,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9363,28 +9380,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9395,28 +9412,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9427,7 +9444,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9459,10 +9476,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRx24
+ BGRx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9494,7 +9511,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9526,7 +9543,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9558,7 +9575,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9590,7 +9607,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9622,28 +9639,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9654,28 +9671,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9686,28 +9703,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9718,28 +9735,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9750,7 +9767,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9782,10 +9799,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBx24
+ RGBx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9817,7 +9834,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9849,7 +9866,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9881,7 +9898,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9913,7 +9930,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9945,28 +9962,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9977,28 +9994,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10009,28 +10026,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10041,28 +10058,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10073,7 +10090,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10105,10 +10122,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRA24
+ BGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10140,7 +10157,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10172,7 +10189,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10204,7 +10221,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10236,7 +10253,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10268,28 +10285,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10300,28 +10317,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10332,28 +10349,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10364,28 +10381,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10396,7 +10413,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10428,10 +10445,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBA24
+ RGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10463,7 +10480,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10495,7 +10512,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10527,7 +10544,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10559,7 +10576,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10591,28 +10608,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10623,28 +10640,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10655,28 +10672,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10687,28 +10704,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10719,7 +10736,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10751,10 +10768,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nBGRA24
+ nBGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10786,7 +10803,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10818,7 +10835,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10850,7 +10867,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10882,7 +10899,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10914,28 +10931,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10946,28 +10963,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10978,28 +10995,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11010,28 +11027,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11042,7 +11059,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11074,10 +11091,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nRGBA24
+ nRGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11109,7 +11126,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11141,7 +11158,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11173,7 +11190,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11205,7 +11222,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11237,28 +11254,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11269,28 +11286,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11301,28 +11318,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11333,28 +11350,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11365,7 +11382,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11397,10 +11414,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11432,7 +11449,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11464,7 +11481,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11496,7 +11513,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11528,7 +11545,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11560,28 +11577,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11592,28 +11609,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11624,28 +11641,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11656,28 +11673,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11688,7 +11705,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11720,68 +11737,68 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="11" class="Header">
- Blend: SRC1OVER<br/>
+ Blend: SRC1OVER<br/>
(uses global alpha, mask alpha, as well as source 1 and source 2 alphas, when present)<br/>
(only mask format of ALPHA8 is supported)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9" rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- RGB16
+ RGB16
</td>
<td>
- BGR24
+ BGR24
</td>
<td>
- RGB24
+ RGB24
</td>
<td>
- BGR024
+ BGR024
</td>
<td>
- RGB024
+ RGB024
</td>
<td>
- BGR124
+ BGR124
</td>
<td>
- RGB124
+ RGB124
</td>
<td>
- BGRA24
+ BGRA24
</td>
<td>
- RGBA24
+ RGBA24
</td>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB16
+ RGB16
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11813,7 +11830,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11845,7 +11862,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11877,7 +11894,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11909,7 +11926,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11941,28 +11958,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11973,28 +11990,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12005,28 +12022,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12037,28 +12054,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12069,7 +12086,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12101,10 +12118,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGR24
+ BGR24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12136,7 +12153,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12168,7 +12185,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12200,7 +12217,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12232,7 +12249,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12264,28 +12281,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12296,28 +12313,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12328,28 +12345,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12360,28 +12377,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12392,7 +12409,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12424,10 +12441,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB24
+ RGB24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12459,7 +12476,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12491,7 +12508,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12523,7 +12540,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12555,7 +12572,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12587,28 +12604,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12619,28 +12636,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12651,28 +12668,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12683,28 +12700,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12715,7 +12732,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12747,10 +12764,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRx24
+ BGRx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12782,7 +12799,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12814,7 +12831,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12846,7 +12863,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12878,7 +12895,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12910,28 +12927,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12942,28 +12959,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12974,28 +12991,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13006,28 +13023,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13038,7 +13055,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13070,10 +13087,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBx24
+ RGBx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13105,7 +13122,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13137,7 +13154,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13169,7 +13186,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13201,7 +13218,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13233,28 +13250,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13265,28 +13282,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13297,28 +13314,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13329,28 +13346,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13361,7 +13378,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13393,10 +13410,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRA24
+ BGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13428,7 +13445,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13460,7 +13477,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13492,7 +13509,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13524,7 +13541,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13556,28 +13573,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13588,28 +13605,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13620,28 +13637,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13652,28 +13669,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13684,7 +13701,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13716,10 +13733,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBA24
+ RGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13751,7 +13768,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13783,7 +13800,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13815,7 +13832,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13847,7 +13864,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13879,28 +13896,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13911,28 +13928,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13943,28 +13960,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13975,28 +13992,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14007,7 +14024,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14039,10 +14056,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nBGRA24
+ nBGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14074,7 +14091,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14106,7 +14123,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14138,7 +14155,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14170,7 +14187,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14202,28 +14219,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14234,28 +14251,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14266,28 +14283,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14298,28 +14315,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14330,7 +14347,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14362,10 +14379,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nRGBA24
+ nRGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14397,7 +14414,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14429,7 +14446,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14461,7 +14478,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14493,7 +14510,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14525,28 +14542,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14557,28 +14574,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14589,28 +14606,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14621,28 +14638,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14653,7 +14670,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14685,10 +14702,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14720,7 +14737,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14752,7 +14769,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14784,7 +14801,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14816,7 +14833,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14848,28 +14865,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14880,28 +14897,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14912,28 +14929,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14944,28 +14961,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14976,7 +14993,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -15012,20 +15029,20 @@ Welcome to BLTsville </title>
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
- <td colspan="4" class="Header">
- Non-Interpolated Scale (Nearest Neighbor) + Blend: SRC1OVER<br/>
+ <td colspan="5" class="Header">
+ Non-Interpolated Scale (Nearest Neighbor) + Blend: SRC1OVER<br/>
(uses only Source 1 and Source 2/Destination alphas, if present)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
- <td colspan="2" rowspan="1">
- Destination
+ <td colspan="3" rowspan="1">
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -15036,6 +15053,8 @@ Welcome to BLTsville </title>
&nbsp;
</td>
<td>
+ RGB16</td>
+ <td>
RGB124
</td>
<td>
@@ -15043,15 +15062,27 @@ Welcome to BLTsville </title>
</td>
</tr>
<tr class="ctr_small">
- <td colspan="1" rowspan="8" class="rt">
- RGBA24
+ <td colspan="1" rowspan="9" class="rt">
+ RGBA24
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
+ RGB16</td>
+ <td>
+ <img src="check.png" alt="+"/>*,**</td>
+ <td>
+ &nbsp;</td>
+ <td>
+ &nbsp;</td>
+</tr>
+<tr class="ctr_small">
+ <td class="rt">
RGBx24
</td>
<td>
+ &nbsp;</td>
+ <td>
<img src="check.png" alt="+"/>*
</td>
<td>
@@ -15063,6 +15094,8 @@ Welcome to BLTsville </title>
RGBA24
</td>
<td>
+ &nbsp;</td>
+ <td>
&nbsp;
</td>
<td>
@@ -15071,7 +15104,7 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- * Source 2 and Destination must be the same surface (and have the same geometry) and share the same rectangle.
-</p>
+ * Source 2 and Destination must be the same surface (and have the same geometry) and share the same rectangle.<br />
+ ** With and without ordered dither.</p>
</body>
</html> \ No newline at end of file
diff --git a/ticpu/doc/linux/BLTsville-Linux-Release-Notes.html b/ticpu/doc/linux/BLTsville-Linux-Release-Notes.html
index d78c98f..e46dd99 100755
--- a/ticpu/doc/linux/BLTsville-Linux-Release-Notes.html
+++ b/ticpu/doc/linux/BLTsville-Linux-Release-Notes.html
@@ -10,55 +10,52 @@
Welcome to BLTsville </title>
<style type="text/css">
.Title {
- font-size: xx-large;
- font-weight: bold;
+ font-size: xx-large;
+ font-weight: bold;
}
.Subtitle {
- font-size: x-large;
- font-weight: bold;
+ font-size: x-large;
+ font-weight: bold;
}
.Section {
- font-size: large;
- font-weight: bold;
+ font-size: large;
+ font-weight: bold;
}
.Header {
- font-weight: bold;
+ font-weight: bold;
}
.ctr_small {
- text-align: center;
- font-size: small;
+ text-align: center;
+ font-size: small;
}
.rt {
- text-align: right;
+ text-align: right;
}
.Code {
- font-family: "Courier New", Courier, monospace;
+ font-family: "Courier New", Courier, monospace;
}
-.style1 {
- font-family: "Times New Roman";
-}
-.style2 {
- margin-left: 80px;
+.list {
+ margin-left: 80px;
}
.note {
- font-size: large;
- font-weight: bold;
- font-style: italic;
- font-family: Arial, Helvetica, sans-serif;
+ font-size: large;
+ font-weight: bold;
+ font-style: italic;
+ font-family: Arial, Helvetica, sans-serif;
}
-.style3 {
- margin-left: 40px;
+.indent {
+ margin-left: 40px;
}
</style>
</head>
<body>
<span class="Title">BLTsville for Linux</span>
<p class="Subtitle">
- CPU Implementation - Version 2.0.0.8
+ CPU Implementation - Version 2.0.0.9
</p>
<hr/>
<p>
- <span class="style1">Copyright © 2011 </span>Texas Instruments, Inc.
+ Copyright © 2011 Texas Instruments, Inc.
</p>
<p>
By using this software you agree that you have read, understood, and agree to be bound by the terms in the accompanying <a href="../license">
@@ -89,7 +86,7 @@ Welcome to BLTsville </title>
<ul>
<li>Blend types <span class="Code">BVBLEND_SRC1</span> and <span class="Code">BVBLEND_SRC2</span> are functionally equivalent to ROPs of <span class="Code">0xCCCC</span> and <span class="Code">0xF0F0</span>, respectively.&nbsp; But these two ways of specifying the same operation currently take two different code paths, so:</li>
</ul>
- <ol class="style2">
+ <ol class="list">
<li>When a conversion is supported by both paths, the performance of them will differ.&nbsp; In general, the ROP path will be faster.</li>
<li>When a conversion is not supported in the ROP path, it may be supported in the blend path.</li>
<li>When a conversion is supported in the blend path, it may not be supported in the ROP path.</li>
@@ -104,27 +101,47 @@ Welcome to BLTsville </title>
<tr>
<td>
<p>
+ 2.0.0.9</p>
+ <ul>
+ <li>Improved structure validation checks.</li>
+ <li>Fixed two issues that could cause access of <span class="Code">bvbltparams</span> members associated with unused surfaces.</li>
+ <li>Added validation of <span class="Code">dithermode</span> when doing fills (dithering not currently supported for fills).</li>
+ <li>Added support for <span class="Code">BVDITHER_GOOD_ON</span>, <span class="Code">BVDITHER_BETTER_ON</span>, and <span class="Code">BVDITHER_BEST_ON</span>.</li>
+ <li>Fixed issue with rotated surfaces and fills.</li>
+ <li>Added 4 new conversions:<ul>
+ <li>RGBx24 to UYVY</li>
+ <li>UYVY to RGBx24</li>
+ <li>NV12 to RGBx24</li>
+ <li>NV12 to BGRx24</li>
+ </ul>
+ </li>
+ <li>Added scaled RGBA24 SRC1OVER blend into RGB16 (source2 and destination must be the same).</li>
+ <li>Added scaled RGBA24 SRC1OVER blend into RGB16 with dithering (source2 and destination must be the same).</li>
+ <li>Changed method of non-interpolated upscaling for better pixel distribution.</li>
+ <li>Fixed incorrect color in RGBx24 to RGB16 dithering for images without a multiple of 8 width.</li>
+ </ul>
+ <p>
2.0.0.8</p>
- <ul>
- <li>Fixed occasional failure to initialize that caused return of BVERR_RSRC.</li>
- </ul>
+ <ul>
+ <li>Fixed occasional failure to initialize that caused return of BVERR_RSRC.</li>
+ </ul>
<p>
2.0.0.7</p>
- <ul>
- <li>Fixed typedef of bv_unmap member of bvbuffmap structure (bvinternal.h issue).</li>
- <li>Fixed access-after-free bug in bv_unmap().</li>
- <li>Changed method of handling over-read on last source line during scaling.</li>
- </ul>
- <p>
+ <ul>
+ <li>Fixed typedef of bv_unmap member of bvbuffmap structure (bvinternal.h issue).</li>
+ <li>Fixed access-after-free bug in bv_unmap().</li>
+ <li>Changed method of handling over-read on last source line during scaling.</li>
+ </ul>
+ <p>
2.0.0.6</p>
- <ul>
- <li>Added more dither validation.</li>
- <li>Extended non-interpolated scaling to all supported 32-bit formats.</li>
- <li>Added ordered 2x2/4x4 dither for RGBx24 to RGB16.</li>
- <li>Fixed issue with NV12 rectangle offset that caused incorrect colors on right edge of images.</li>
- <li>Added support for ALPHA8 as mask (instead of MONO8).</li>
- </ul>
- <p>
+ <ul>
+ <li>Added more dither validation.</li>
+ <li>Extended non-interpolated scaling to all supported 32-bit formats.</li>
+ <li>Added ordered 2x2/4x4 dither for RGBx24 to RGB16.</li>
+ <li>Fixed issue with NV12 rectangle offset that caused incorrect colors on right edge of images.</li>
+ <li>Added support for ALPHA8 as mask (instead of MONO8).</li>
+ </ul>
+ <p>
2.0.0.5</p>
<ul>
<li>Fix for clipping regression of negative coordinates and clips result in NULL rectangles.</li>
@@ -162,7 +179,7 @@ Welcome to BLTsville </title>
<li>Rotation</li>
</ul>
</li>
- <li>Fix for UYVY/VYUY 180<span class="style1">° rotation</span></li>
+ <li>Fix for UYVY/VYUY 180° rotation</li>
<li>Fix for rotation normalization (calculating difference between surface orientations)</li>
<li>Removed double-rotation in some cases</li>
<li>Added check for NULL and inverted rectangles</li>
@@ -191,7 +208,7 @@ Welcome to BLTsville </title>
<p>
2.0.0.0
</p>
- <p class="style3">
+ <p class="indent">
Initial release
</p>
</td>
@@ -203,26 +220,26 @@ Welcome to BLTsville </title>
<table border="1" cellpadding="2" cellspacing="2">
<tr>
<td>
- .../lib/android/libbltsville_cpu.so
+ .../lib/linux/libbltsville_cpu.so
</td>
<td>
- Client entry point for CPU-based implementations. Softlink to libbltsville_ticpu.so.
+ Client entry point for CPU-based implementations. Softlink to libbltsville_ticpu.so.
</td>
</tr>
<tr>
<td>
- .../lib/android/libbltsville_ticpu.so
+ .../lib/linux/libbltsville_ticpu.so
</td>
<td>
- Client entry point for special cases.&nbsp; Softlink to libbltsville_ticpu.so.2.0.0.8.&nbsp; (Most clients should not use this entry.)
+ Client entry point for special cases.&nbsp; Softlink to libbltsville_ticpu.so.2.0.0.9.&nbsp; (Most clients should not use this entry.)
</td>
</tr>
<tr>
<td>
- .../lib/android/libbltsville_ticpu.so.2.0.0.8
+ .../lib/linux/libbltsville_ticpu.so.2.0.0.9
</td>
<td>
- Version 2.0.0.8 of the TI BLTsville CPU-based library of 2-D functions for Android.&nbsp; (Do not directly load this file.)
+ Version 2.0.0.9 of the TI BLTsville CPU-based library of 2-D functions for Linux.&nbsp; (Do not directly load this file.)
</td>
</tr>
</table>
@@ -250,12 +267,12 @@ Welcome to BLTsville </title>
<table border="1" style="background-color:#EBEBEB">
<tr>
<td colspan="25" class="Header">
- Solid Fill (1x1 Source 1)
+ Solid Fill (1x1 Source 1)
</td>
</tr>
<tr>
<td colspan="25">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -414,20 +431,20 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table style="background-color:#EBEBEB" border="1">
<tr>
<td colspan="26" class="Header">
- Color Space Conversion
+ Color Space Conversion
</td>
</tr>
<tr>
<td>
- Source&nbsp;1
+ Source&nbsp;1
</td>
<td colspan="25">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -1055,7 +1072,7 @@ Welcome to BLTsville </title>
&nbsp;
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -1890,13 +1907,13 @@ Welcome to BLTsville </title>
<img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
<img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -2032,7 +2049,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- IYUV/I420
+ IYUV/I420
</td>
<td>
&nbsp;
@@ -2127,16 +2144,16 @@ Welcome to BLTsville </title>
<img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
- &nbsp;
+ <img src="check.png" alt="+"/>
</td>
<td>
&nbsp;
@@ -2272,26 +2289,26 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" cellspacing="2" style="background-color:#EBEBEB">
<tr>
<td colspan="2" class="Header">
- Color Space Conversion<br/>
+ Color Space Conversion<br/>
(with Dither)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
RGB16
@@ -2313,26 +2330,26 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="13" class="Header">
- Scaling: Non-interpolated<br/>
+ Scaling: Non-interpolated<br/>
(NEAREST_NEIGHBOR)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td colspan="12">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
BGR124
@@ -2754,25 +2771,25 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" cellspacing="2" style="background-color:#EBEBEB">
<tr>
<td colspan="7" class="Header">
- Rotation
+ Rotation
</td>
</tr>
<tr>
<td>
- Angle
+ Angle
</td>
<td colspan="6">
- Format
+ Format
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
LUT8
@@ -2795,7 +2812,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- 90 Degrees
+ 90 Degrees
</td>
<td>
<img src="check.png" alt="+"/>*
@@ -2818,7 +2835,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- 180 Degrees
+ 180 Degrees
</td>
<td>
<img src="check.png" alt="+"/>*
@@ -2841,7 +2858,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- 270 Degrees
+ 270 Degrees
</td>
<td>
<img src="check.png" alt="+"/>*
@@ -2864,135 +2881,135 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- * = Rotation has width/height limitations.. See the chart below
+ * = Rotation has width/height limitations.. See the chart below
</p>
<table border="1" cellpadding="2" cellspacing="2" style="background-color:#EBEBEB">
<tr>
<td colspan="7" class="Header">
- Rotation Limitations
+ Rotation Limitations
</td>
</tr>
<tr>
<td>
- Angle
+ Angle
</td>
<td colspan="6">
- Format
+ Format
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
- LUT8
+ LUT8
</td>
<td>
- RGB16
+ RGB16
</td>
<td>
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
- YUYV/YUY2
+ YUYV/YUY2
</td>
<td>
- IYUV/I420
+ IYUV/I420
</td>
<td>
- NV12
+ NV12
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
- 90 Degrees
+ 90 Degrees
</td>
<td>
- Multiple of 4 x 8&nbsp;
+ Multiple of 4 x 8&nbsp;
</td>
<td>
- Multiple of 8 x 8
+ Multiple of 8 x 8
</td>
<td>
- Multiple of 2 x 8
+ Multiple of 2 x 8
</td>
<td>
- Multiple of 2 x 8
+ Multiple of 2 x 8
</td>
<td>
- Multiple of 8 x 16
+ Multiple of 8 x 16
</td>
<td>
- Multiple of 16 x 16
+ Multiple of 16 x 16
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
- 180 Degrees
+ 180 Degrees
</td>
<td>
- Multiple of 16 x 1
+ Multiple of 16 x 1
</td>
<td>
- Multiple of 8 x 1
+ Multiple of 8 x 1
</td>
<td>
- Multiple of 8 x 1
+ Multiple of 8 x 1
</td>
<td>
- Multiple of 8 x 1
+ Multiple of 8 x 1
</td>
<td>
- Multiple of 32 x 2
+ Multiple of 32 x 2
</td>
<td>
- Multiple of 16 x 2
+ Multiple of 16 x 2
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
- 270 Degrees
+ 270 Degrees
</td>
<td>
- Multiple of 4 x 8
+ Multiple of 4 x 8
</td>
<td>
- Multiple of 8 x 8
+ Multiple of 8 x 8
</td>
<td>
- Multiple of 2 x 8
+ Multiple of 2 x 8
</td>
<td>
- Multiple of 2 x 8
+ Multiple of 2 x 8
</td>
<td>
- Multiple of 8 x 16
+ Multiple of 8 x 16
</td>
<td>
- Multiple of 16 x 16
+ Multiple of 16 x 16
</td>
</tr>
</table>
<p>
- (Rotation does not support scaling.)
+ (Rotation does not support scaling.)
</p>
<p>
- &nbsp;
+ &nbsp;
</p>
<p>
- (Blends do not support clipping or scaling.)<br/>
+ (Blends do not support clipping or scaling.)<br/>
(Source 1 or Source 2 can be a 1x1 rectangle for solid color.)<br/>
(Color space conversion is performed as indicated.)
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="9" class="Header">
- Blend: CLEAR
+ Blend: CLEAR
</td>
</tr>
<tr>
<td colspan="9">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -3055,25 +3072,25 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="10" class="Header">
- Blend: SRC1
+ Blend: SRC1
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td colspan="9">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
RGB16
@@ -3425,25 +3442,25 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="10" class="Header">
- Blend: SRC2
+ Blend: SRC2
</td>
</tr>
<tr>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;&nbsp;
+ &nbsp;&nbsp;
</td>
<td>
RGB16
@@ -3795,24 +3812,24 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="11" class="Header">
- Blend: SRC1OVER<br/>
+ Blend: SRC1OVER<br/>
(uses only Source 1 and Source 2 alphas, if present)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9" rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -3852,7 +3869,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td colspan="1" rowspan="10" class="rt">
- BGRA24
+ BGRA24
</td>
<td class="rt">
RGB16
@@ -4175,7 +4192,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td colspan="1" rowspan="10" class="rt">
- RGBA24
+ RGBA24
</td>
<td class="rt">
RGB16
@@ -4498,7 +4515,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td colspan="1" rowspan="10" class="rt">
- nBGRA24
+ nBGRA24
</td>
<td class="rt">
RGB16
@@ -4821,7 +4838,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td colspan="1" rowspan="10" class="rt">
- nRGBA24
+ nRGBA24
</td>
<td class="rt">
RGB16
@@ -5144,67 +5161,67 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="11" class="Header">
- Blend: SRC1OVER | GLOBAL<br/>
+ Blend: SRC1OVER | GLOBAL<br/>
(uses global alpha as well as source 1 and source 2 alphas, if present)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9" rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- RGB16
+ RGB16
</td>
<td>
- BGR24
+ BGR24
</td>
<td>
- RGB24
+ RGB24
</td>
<td>
- BGR024
+ BGR024
</td>
<td>
- RGB024
+ RGB024
</td>
<td>
- BGR124
+ BGR124
</td>
<td>
- RGB124
+ RGB124
</td>
<td>
- BGRA24
+ BGRA24
</td>
<td>
- RGBA24
+ RGBA24
</td>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB16
+ RGB16
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5236,7 +5253,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5268,7 +5285,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5300,7 +5317,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5332,7 +5349,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5364,28 +5381,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5396,28 +5413,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5428,28 +5445,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5460,28 +5477,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5492,7 +5509,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5524,10 +5541,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGR24
+ BGR24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5559,7 +5576,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5591,7 +5608,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5623,7 +5640,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5655,7 +5672,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5687,28 +5704,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5719,28 +5736,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5751,28 +5768,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5783,28 +5800,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5815,7 +5832,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5847,10 +5864,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB24
+ RGB24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5882,7 +5899,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5914,7 +5931,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5946,7 +5963,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -5978,7 +5995,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6010,28 +6027,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6042,28 +6059,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6074,28 +6091,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6106,28 +6123,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6138,7 +6155,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6170,10 +6187,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRx24
+ BGRx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6205,7 +6222,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6237,7 +6254,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6269,7 +6286,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6301,7 +6318,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6333,28 +6350,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6365,28 +6382,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6397,28 +6414,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6429,28 +6446,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6461,7 +6478,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6493,10 +6510,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBx24
+ RGBx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6528,7 +6545,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6560,7 +6577,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6592,7 +6609,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6624,7 +6641,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6656,28 +6673,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6688,28 +6705,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6720,28 +6737,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6752,28 +6769,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6784,7 +6801,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6816,10 +6833,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRA24
+ BGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6851,7 +6868,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6883,7 +6900,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6915,7 +6932,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6947,7 +6964,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -6979,28 +6996,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7011,28 +7028,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7043,28 +7060,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7075,28 +7092,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7107,7 +7124,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7139,10 +7156,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBA24
+ RGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7174,7 +7191,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7206,7 +7223,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7238,7 +7255,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7270,7 +7287,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7302,28 +7319,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7334,28 +7351,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7366,28 +7383,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7398,28 +7415,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7430,7 +7447,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7462,10 +7479,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nBGRA24
+ nBGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7497,7 +7514,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7529,7 +7546,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7561,7 +7578,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7593,7 +7610,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7625,28 +7642,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7657,28 +7674,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7689,28 +7706,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7721,28 +7738,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7753,7 +7770,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7785,10 +7802,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nRGBA24
+ nRGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7820,7 +7837,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7852,7 +7869,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7884,7 +7901,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7916,7 +7933,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7948,28 +7965,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -7980,28 +7997,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8012,28 +8029,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8044,28 +8061,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8076,7 +8093,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8108,10 +8125,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8143,7 +8160,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8175,7 +8192,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8207,7 +8224,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8239,7 +8256,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8271,28 +8288,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8303,28 +8320,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8335,28 +8352,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8367,28 +8384,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8399,7 +8416,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8431,68 +8448,68 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="11" class="Header">
- Blend: SRC1OVER<br/>
+ Blend: SRC1OVER<br/>
(uses mask alpha&nbsp;as well as source 1 and source 2 alphas, if present)<br/>
(only mask format of ALPHA8 is supported)<br/>
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9" rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- RGB16
+ RGB16
</td>
<td>
- BGR24
+ BGR24
</td>
<td>
- RGB24
+ RGB24
</td>
<td>
- BGR024
+ BGR024
</td>
<td>
- RGB024
+ RGB024
</td>
<td>
- BGR124
+ BGR124
</td>
<td>
- RGB124
+ RGB124
</td>
<td>
- BGRA24
+ BGRA24
</td>
<td>
- RGBA24
+ RGBA24
</td>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB16
+ RGB16
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8524,7 +8541,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8556,7 +8573,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8588,7 +8605,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8620,7 +8637,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8652,28 +8669,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8684,28 +8701,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8716,28 +8733,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8748,28 +8765,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8780,7 +8797,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8812,10 +8829,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGR24
+ BGR24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8847,7 +8864,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8879,7 +8896,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8911,7 +8928,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8943,7 +8960,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -8975,28 +8992,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9007,28 +9024,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9039,28 +9056,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9071,28 +9088,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9103,7 +9120,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9135,10 +9152,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB24
+ RGB24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9170,7 +9187,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9202,7 +9219,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9234,7 +9251,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9266,7 +9283,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9298,28 +9315,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9330,28 +9347,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9362,28 +9379,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9394,28 +9411,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9426,7 +9443,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9458,10 +9475,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRx24
+ BGRx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9493,7 +9510,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9525,7 +9542,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9557,7 +9574,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9589,7 +9606,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9621,28 +9638,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9653,28 +9670,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9685,28 +9702,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9717,28 +9734,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9749,7 +9766,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9781,10 +9798,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBx24
+ RGBx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9816,7 +9833,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9848,7 +9865,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9880,7 +9897,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9912,7 +9929,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9944,28 +9961,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -9976,28 +9993,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10008,28 +10025,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10040,28 +10057,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10072,7 +10089,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10104,10 +10121,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRA24
+ BGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10139,7 +10156,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10171,7 +10188,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10203,7 +10220,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10235,7 +10252,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10267,28 +10284,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10299,28 +10316,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10331,28 +10348,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10363,28 +10380,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10395,7 +10412,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10427,10 +10444,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBA24
+ RGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10462,7 +10479,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10494,7 +10511,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10526,7 +10543,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10558,7 +10575,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10590,28 +10607,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10622,28 +10639,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10654,28 +10671,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10686,28 +10703,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10718,7 +10735,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10750,10 +10767,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nBGRA24
+ nBGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10785,7 +10802,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10817,7 +10834,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10849,7 +10866,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10881,7 +10898,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10913,28 +10930,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10945,28 +10962,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -10977,28 +10994,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11009,28 +11026,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11041,7 +11058,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11073,10 +11090,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nRGBA24
+ nRGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11108,7 +11125,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11140,7 +11157,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11172,7 +11189,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11204,7 +11221,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11236,28 +11253,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11268,28 +11285,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11300,28 +11317,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11332,28 +11349,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11364,7 +11381,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11396,10 +11413,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11431,7 +11448,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11463,7 +11480,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11495,7 +11512,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11527,7 +11544,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11559,28 +11576,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11591,28 +11608,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11623,28 +11640,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11655,28 +11672,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11687,7 +11704,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11719,68 +11736,68 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- &nbsp;
+ &nbsp;
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
<td colspan="11" class="Header">
- Blend: SRC1OVER<br/>
+ Blend: SRC1OVER<br/>
(uses global alpha, mask alpha, as well as source 1 and source 2 alphas, when present)<br/>
(only mask format of ALPHA8 is supported)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
<td colspan="9" rowspan="1">
- Destination
+ Destination
</td>
</tr>
<tr class="ctr_small">
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- RGB16
+ RGB16
</td>
<td>
- BGR24
+ BGR24
</td>
<td>
- RGB24
+ RGB24
</td>
<td>
- BGR024
+ BGR024
</td>
<td>
- RGB024
+ RGB024
</td>
<td>
- BGR124
+ BGR124
</td>
<td>
- RGB124
+ RGB124
</td>
<td>
- BGRA24
+ BGRA24
</td>
<td>
- RGBA24
+ RGBA24
</td>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB16
+ RGB16
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11812,7 +11829,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11844,7 +11861,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11876,7 +11893,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11908,7 +11925,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11940,28 +11957,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -11972,28 +11989,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12004,28 +12021,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12036,28 +12053,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12068,7 +12085,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12100,10 +12117,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGR24
+ BGR24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12135,7 +12152,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12167,7 +12184,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12199,7 +12216,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12231,7 +12248,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12263,28 +12280,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12295,28 +12312,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12327,28 +12344,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12359,28 +12376,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12391,7 +12408,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12423,10 +12440,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGB24
+ RGB24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12458,7 +12475,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12490,7 +12507,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12522,7 +12539,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12554,7 +12571,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12586,28 +12603,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12618,28 +12635,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12650,28 +12667,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td>
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12682,28 +12699,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12714,7 +12731,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12746,10 +12763,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRx24
+ BGRx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12781,7 +12798,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12813,7 +12830,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12845,7 +12862,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12877,7 +12894,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12909,28 +12926,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12941,28 +12958,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -12973,28 +12990,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13005,28 +13022,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13037,7 +13054,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13069,10 +13086,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBx24
+ RGBx24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13104,7 +13121,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13136,7 +13153,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13168,7 +13185,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13200,7 +13217,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13232,28 +13249,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13264,28 +13281,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13296,28 +13313,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13328,28 +13345,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13360,7 +13377,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13392,10 +13409,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- BGRA24
+ BGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13427,7 +13444,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13459,7 +13476,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13491,7 +13508,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13523,7 +13540,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13555,28 +13572,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13587,28 +13604,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13619,28 +13636,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13651,28 +13668,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13683,7 +13700,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13715,10 +13732,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- RGBA24
+ RGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13750,7 +13767,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13782,7 +13799,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13814,7 +13831,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13846,7 +13863,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13878,28 +13895,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13910,28 +13927,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13942,28 +13959,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -13974,28 +13991,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14006,7 +14023,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14038,10 +14055,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nBGRA24
+ nBGRA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14073,7 +14090,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14105,7 +14122,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14137,7 +14154,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14169,7 +14186,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14201,28 +14218,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14233,28 +14250,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14265,28 +14282,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14297,28 +14314,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14329,7 +14346,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14361,10 +14378,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- nRGBA24
+ nRGBA24
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14396,7 +14413,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14428,7 +14445,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14460,7 +14477,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14492,7 +14509,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14524,28 +14541,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14556,28 +14573,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14588,28 +14605,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14620,28 +14637,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14652,7 +14669,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14684,10 +14701,10 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td rowspan="10" class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td class="rt">
- RGB16
+ RGB16
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14719,7 +14736,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGR24
+ BGR24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14751,7 +14768,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGB24
+ RGB24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14783,7 +14800,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRx24
+ BGRx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14815,7 +14832,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBx24
+ RGBx24
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14847,28 +14864,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- BGRA24
+ BGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14879,28 +14896,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- RGBA24
+ RGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14911,28 +14928,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nBGRA24
+ nBGRA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14943,28 +14960,28 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- nRGBA24
+ nRGBA24
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
- &nbsp;
+ &nbsp;
</td>
<td>
<img src="check.png" alt="+"/>
@@ -14975,7 +14992,7 @@ Welcome to BLTsville </title>
</tr>
<tr class="ctr_small">
<td class="rt">
- UYVY/Y422
+ UYVY/Y422
</td>
<td>
<img src="check.png" alt="+"/>
@@ -15011,20 +15028,20 @@ Welcome to BLTsville </title>
</p>
<table border="1" cellpadding="2" style="background-color:#EBEBEB">
<tr>
- <td colspan="4" class="Header">
- Non-Interpolated Scale (Nearest Neighbor) + Blend: SRC1OVER<br/>
+ <td colspan="5" class="Header">
+ Non-Interpolated Scale (Nearest Neighbor) + Blend: SRC1OVER<br/>
(uses only Source 1 and Source 2/Destination alphas, if present)
</td>
</tr>
<tr>
<td>
- Source 1
+ Source 1
</td>
<td>
- Source 2
+ Source 2
</td>
- <td colspan="2" rowspan="1">
- Destination
+ <td colspan="3" rowspan="1">
+ Destination
</td>
</tr>
<tr class="ctr_small">
@@ -15035,6 +15052,8 @@ Welcome to BLTsville </title>
&nbsp;
</td>
<td>
+ RGB16</td>
+ <td>
RGB124
</td>
<td>
@@ -15042,15 +15061,27 @@ Welcome to BLTsville </title>
</td>
</tr>
<tr class="ctr_small">
- <td colspan="1" rowspan="8" class="rt">
- RGBA24
+ <td colspan="1" rowspan="9" class="rt">
+ RGBA24
</td>
</tr>
<tr class="ctr_small">
<td class="rt">
+ RGB16</td>
+ <td>
+ <img src="check.png" alt="+"/>*,**</td>
+ <td>
+ &nbsp;</td>
+ <td>
+ &nbsp;</td>
+</tr>
+<tr class="ctr_small">
+ <td class="rt">
RGBx24
</td>
<td>
+ &nbsp;</td>
+ <td>
<img src="check.png" alt="+"/>*
</td>
<td>
@@ -15062,6 +15093,8 @@ Welcome to BLTsville </title>
RGBA24
</td>
<td>
+ &nbsp;</td>
+ <td>
&nbsp;
</td>
<td>
@@ -15070,7 +15103,7 @@ Welcome to BLTsville </title>
</tr>
</table>
<p>
- * Source 2 and Destination must be the same surface (and have the same geometry) and share the same rectangle.
-</p>
+ * Source 2 and Destination must be the same surface (and have the same geometry) and share the same rectangle.<br />
+ ** With and without ordered dither.</p>
</body>
</html> \ No newline at end of file
diff --git a/ticpu/lib/android/libbltsville_ticpu.2.0.0.8.so b/ticpu/lib/android/libbltsville_ticpu.2.0.0.9.so
index 80a91a3..af9ffeb 100755
--- a/ticpu/lib/android/libbltsville_ticpu.2.0.0.8.so
+++ b/ticpu/lib/android/libbltsville_ticpu.2.0.0.9.so
Binary files differ
diff --git a/ticpu/lib/android/libbltsville_ticpu.so b/ticpu/lib/android/libbltsville_ticpu.so
index dbb17ba..9825cf0 120000
--- a/ticpu/lib/android/libbltsville_ticpu.so
+++ b/ticpu/lib/android/libbltsville_ticpu.so
@@ -1 +1 @@
-./libbltsville_ticpu.2.0.0.8.so \ No newline at end of file
+./libbltsville_ticpu.2.0.0.9.so \ No newline at end of file
diff --git a/ticpu/lib/linux/libbltsville_ticpu.so b/ticpu/lib/linux/libbltsville_ticpu.so
index 2b76e90..645b0d1 120000
--- a/ticpu/lib/linux/libbltsville_ticpu.so
+++ b/ticpu/lib/linux/libbltsville_ticpu.so
@@ -1 +1 @@
-./libbltsville_ticpu.so.2.0.0.8 \ No newline at end of file
+./libbltsville_ticpu.so.2.0.0.9 \ No newline at end of file
diff --git a/ticpu/lib/linux/libbltsville_ticpu.so.2.0.0.8 b/ticpu/lib/linux/libbltsville_ticpu.so.2.0.0.9
index 8074e37..af15093 100755
--- a/ticpu/lib/linux/libbltsville_ticpu.so.2.0.0.8
+++ b/ticpu/lib/linux/libbltsville_ticpu.so.2.0.0.9
Binary files differ