HomeSort by: relevance | last modified time | path
    Searched refs:bpp (Results 1 - 25 of 608) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/xorg-server.old/dist/miext/rootless/
rootlessConfig.h 45 pixel. Note that we only care for 32bpp data. Mac OS X uses planar
46 alpha for 16bpp. */
47 # define RootlessAlphaMask(bpp) ((bpp) == 32 ? 0xFF000000 : 0)
58 # define RootlessAlphaMask(bpp) ((bpp) == 32 ? 0xFF000000 : 0)
  /xsrc/external/mit/xorg-server/dist/miext/rootless/
rootlessConfig.h 47 pixel. Note that we only care for 32bpp data. Mac OS X uses planar
48 alpha for 16bpp. */
49 #define RootlessAlphaMask(bpp) ((bpp) == 32 ? 0xFF000000 : 0)
  /xsrc/external/mit/MesaLib/dist/src/asahi/lib/
tiling.h 28 unsigned width, unsigned bpp, unsigned linear_pitch,
32 unsigned width, unsigned bpp, unsigned linear_pitch,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/
lima_tiling.h 36 uint32_t bpp);
42 uint32_t bpp);
lima_tiling.c 78 uint32_t bpp)
92 const uint8_t *source = &src8[source_start + bpp * src_x];
93 uint8_t *dest = dst + block_start_s + bpp * (block_x_s + index);
95 for (int b = 0; b < bpp; ++b)
131 uint32_t bpp)
145 uint8_t *dest = &dst8[dest_start + bpp * dest_x];
146 const uint8_t *source = src + block_start_s + bpp * (block_x_s + index);
148 for (int b = 0; b < bpp; ++b)
159 uint32_t bpp)
161 switch (bpp) {
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/fb/
fb24_32.h 39 int bpp);
49 int bpp);
fbscreen.c 101 int bpp) /* bits per pixel for screen */
106 if (bpp > 1) {
126 if (bpp == 1) {
154 int bpp,
166 int bpp)
175 int imagebpp = bpp;
181 stride = (width * bpp) / 8;
189 * By default, a 24bpp screen will use 32bpp images, this avoids
191 * pixels. If you want real 24bit images, include a 24bpp
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/miext/shadow/
shalloc.c 41 shadowAlloc (int width, int height, int bpp)
47 stride = BitmapBytePad (width * bpp);
  /xsrc/external/mit/xorg-server/dist/hw/sun/
sunMultiDepth.c 120 int bpp /* bits per pixel of root */
130 ret = fbSetupScreen(pScreen, pbits, xsize, ysize, dpix, dpiy, width, bpp);
146 int bpp
158 &rootdepth, &defaultVisual, 1 << (bpp - 1), 8))
178 int bpp
182 width, bpp))
185 dpiy, width, bpp);
202 int bpp /* bits per pixel of root */
207 return fbSetupScreen(pScreen, pbits, xsize, ysize, dpix, dpiy, width, bpp);
219 int bpp
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/sun/
sunMultiDepth.c 120 int bpp /* bits per pixel of root */
130 ret = fbSetupScreen(pScreen, pbits, xsize, ysize, dpix, dpiy, width, bpp);
146 int bpp
158 &rootdepth, &defaultVisual, 1 << (bpp - 1), 8))
178 int bpp
182 width, bpp))
185 dpiy, width, bpp);
202 int bpp /* bits per pixel of root */
207 return fbSetupScreen(pScreen, pbits, xsize, ysize, dpix, dpiy, width, bpp);
219 int bpp
    [all...]
  /xsrc/external/mit/xorg-server/dist/fb/
fbutil.c 30 fbReplicatePixel(Pixel p, int bpp)
34 b &= FbFullMask(bpp);
35 while (bpp < FB_UNIT) {
36 b |= b << bpp;
37 bpp <<= 1;
fbscreen.c 98 int bpp)
103 if (bpp > 1) {
123 if (bpp == 1) {
145 int dpix, int dpiy, int width, int bpp,
150 int dpix, int dpiy, int width, int bpp)
164 stride = (width * bpp) / 8;
170 /* fb requires power-of-two bpp */
171 if (Ones(bpp) != 1)
179 &defaultVisual, ((unsigned long) 1 << (bpp - 1)),
195 int dpix, int dpiy, int width, int bpp,
    [all...]
  /xsrc/external/mit/xf86-video-geode/dist/src/panel/
pnl_bios.c 153 * bpp: depth of the panel configured
158 Pnl_GetPanelInfoFromBIOS(int *xres, int *yres, int *bpp, int *hz)
196 *bpp = 8;
199 *bpp = 9;
202 *bpp = 12;
205 *bpp = 18;
208 *bpp = 24;
211 *bpp = 16;
266 *bpp = 12;
269 *bpp = 18
    [all...]
  /xsrc/external/mit/xf86-video-nsc/dist/src/panel/
pnl_bios.c 254 * bpp: depth of the panel configured
259 Pnl_GetPanelInfoFromBIOS(int *xres, int *yres, int *bpp, int *hz)
293 *bpp = 8;
296 *bpp = 9;
299 *bpp = 12;
302 *bpp = 18;
305 *bpp = 24;
308 *bpp = 16;
359 *bpp = 12;
362 *bpp = 18
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/core/core/
format_traits.h 55 static const uint32_t bpp{0};
82 static const uint32_t bpp{128};
105 static const uint32_t bpp{128};
128 static const uint32_t bpp{128};
150 static const uint32_t bpp{128};
179 static const uint32_t bpp{128};
208 static const uint32_t bpp{128};
237 static const uint32_t bpp{128};
266 static const uint32_t bpp{128};
289 static const uint32_t bpp{96}
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/drivers/modesetting/
dumb_bo.h 40 const unsigned height, const unsigned bpp);
  /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
v3dvx_formats.c 211 uint32_t *bpp)
222 *bpp = V3D_INTERNAL_BPP_32;
229 *bpp = V3D_INTERNAL_BPP_32;
236 *bpp = V3D_INTERNAL_BPP_32;
248 *bpp = V3D_INTERNAL_BPP_64;
254 /* Use 64bpp to make sure the TLB doesn't throw away the alpha
257 *bpp = V3D_INTERNAL_BPP_64;
262 *bpp = V3D_INTERNAL_BPP_64;
268 *bpp = V3D_INTERNAL_BPP_32;
274 *bpp = V3D_INTERNAL_BPP_64
341 uint32_t type, bpp; local
352 uint32_t type, bpp; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/addrlib/src/core/
addrelemlib.cpp 337 UINT_32 resultBits, ///< [in] result bits: total bpp after decompression
1125 * Adjust bpp/base pitch/width/height according to elemMode and expandX/Y
1135 UINT_32* pBpp, ///< [in,out] bpp
1144 UINT_32 bpp; local
1152 bpp = *pBpp;
1157 packedBits = bpp / expandX / expandY;
1161 packedBits = bpp * expandX * expandY;
1165 packedBits = bpp; // 32-bit packed ==> 2 32-bit result
1188 packedBits = bpp;
1191 packedBits = bpp;
1273 UINT_32 bpp; local
1373 UINT_32 bpp; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/
addrelemlib.cpp 337 UINT_32 resultBits, ///< [in] result bits: total bpp after decompression
1124 * Adjust bpp/base pitch/width/height according to elemMode and expandX/Y
1134 UINT_32* pBpp, ///< [in,out] bpp
1143 UINT_32 bpp; local
1151 bpp = *pBpp;
1156 packedBits = bpp / expandX / expandY;
1160 packedBits = bpp * expandX * expandY;
1164 packedBits = bpp; // 32-bit packed ==> 2 32-bit result
1187 packedBits = bpp;
1190 packedBits = bpp;
1272 UINT_32 bpp; local
1373 UINT_32 bpp; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/core/
addrelemlib.cpp 337 UINT_32 resultBits, ///< [in] result bits: total bpp after decompression
1124 * Adjust bpp/base pitch/width/height according to elemMode and expandX/Y
1134 UINT_32* pBpp, ///< [in,out] bpp
1143 UINT_32 bpp; local
1151 bpp = *pBpp;
1156 packedBits = bpp / expandX / expandY;
1160 packedBits = bpp * expandX * expandY;
1164 packedBits = bpp; // 32-bit packed ==> 2 32-bit result
1187 packedBits = bpp;
1190 packedBits = bpp;
1272 UINT_32 bpp; local
1373 UINT_32 bpp; local
    [all...]
  /xsrc/external/mit/xf86-video-nsc/dist/src/gfx/
disp_gu1.c 137 int gu1_set_display_bpp(unsigned short bpp);
138 int gu1_is_display_mode_supported(int xres, int yres, int bpp, int hz);
139 int gu1_set_display_mode(int xres, int yres, int bpp, int hz);
140 int gu1_set_display_timings(unsigned short bpp, unsigned short flags,
189 unsigned short height, unsigned short bpp);
191 unsigned short height, unsigned short bpp);
200 int gu1_mode_frequency_supported(int xres, int yres, int bpp,
202 int gu1_get_refreshrate_from_frequency(int xres, int yres, int bpp, int *hz,
204 int gu1_get_refreshrate_from_mode(int xres, int yres, int bpp, int *hz,
206 int gu1_get_frequency_from_refreshrate(int xres, int yres, int bpp, int hz
    [all...]
  /xsrc/external/mit/libdrm/dist/tests/modetest/
buffers.c 58 bo_create_dumb(int fd, unsigned int width, unsigned int height, unsigned int bpp)
69 ret = drmModeCreateDumbBuffer(fd, width, height, bpp, 0, &bo->handle,
122 unsigned int bpp; local
130 bpp = 1;
134 bpp = 2;
138 bpp = 4;
154 bpp = 8;
160 bpp = 10;
187 bpp = 16;
192 bpp = 24
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
etnaviv_blt.h 51 uint8_t bpp; /* # bytes per pixel 1/2/4/8 - only used for CLEAR_IMAGE */ member in struct:blt_imginfo
92 uint8_t bpp; member in struct:blt_inplace_op
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_blt.h 52 uint8_t bpp; /* # bytes per pixel 1/2/4/8 - only used for CLEAR_IMAGE */ member in struct:blt_imginfo
93 uint8_t bpp; member in struct:blt_inplace_op
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_exa_shared.h 41 extern Bool RADEONValidPM(uint32_t pm, int bpp);
42 extern Bool RADEONCheckBPP(int bpp);

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>