HomeSort by relevance Sort by last modified time
    Searched refs:mesa_array_format (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/mesa/main/
formats.h 96 typedef uint32_t mesa_array_format; typedef
113 * An enum useful to encode/decode information stored in a mesa_array_format
130 #define MESA_ARRAY_FORMAT(SIZE, SIGNED, IS_FLOAT, NORM, NUM_CHANS, \
144 * Various helpers to access the data encoded in a mesa_array_format
147 _mesa_array_format_is_signed(mesa_array_format f)
153 _mesa_array_format_is_float(mesa_array_format f)
159 _mesa_array_format_is_normalized(mesa_array_format f)
165 _mesa_array_format_get_datatype(mesa_array_format f)
178 _mesa_array_format_get_type_size(mesa_array_format f)
184 _mesa_array_format_get_num_channels(mesa_array_format f
    [all...]
format_utils.h 39 extern const mesa_array_format RGBA32_FLOAT;
40 extern const mesa_array_format RGBA8_UBYTE;
41 extern const mesa_array_format RGBA32_UINT;
42 extern const mesa_array_format RGBA32_INT;
format_utils.c 30 const mesa_array_format RGBA32_FLOAT =
31 MESA_ARRAY_FORMAT(4, 1, 1, 1, 4, 0, 1, 2, 3);
33 const mesa_array_format RGBA8_UBYTE =
34 MESA_ARRAY_FORMAT(1, 0, 0, 1, 4, 0, 1, 2, 3);
36 const mesa_array_format RGBA32_UINT =
37 MESA_ARRAY_FORMAT(4, 0, 0, 0, 4, 0, 1, 2, 3);
39 const mesa_array_format RGBA32_INT =
40 MESA_ARRAY_FORMAT(4, 1, 0, 0, 4, 0, 1, 2, 3);
251 * or a mesa_array_format represented as an uint32_t.
255 * or a mesa_array_format represented as an uint32_t
    [all...]
formats.c 77 mesa_array_format ArrayFormat;
224 get_base_format_for_array_format(mesa_array_format format)
293 * This functions accepts a mesa_format or a mesa_array_format.
373 mesa_array_format
374 _mesa_array_format_flip_channels(mesa_array_format format)
432 mesa_array_format array_format;
    [all...]

Completed in 62 milliseconds