OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:src_format_desc
(Results
1 - 6
of
6
) sorted by relevancy
/xsrc/external/mit/MesaLib/dist/src/util/tests/format/
u_format_compatible_test.c
42
const struct util_format_description *
src_format_desc
;
local
43
src_format_desc
= util_format_description(src_format);
44
if (!
src_format_desc
) {
59
if (util_is_format_compatible(
src_format_desc
, dst_format_desc)) {
60
printf("%s -> %s\n",
src_format_desc
->short_name, dst_format_desc->short_name);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/unit/
u_format_compatible_test.c
42
const struct util_format_description *
src_format_desc
;
local
43
src_format_desc
= util_format_description(src_format);
44
if (!
src_format_desc
) {
59
if (util_is_format_compatible(
src_format_desc
, dst_format_desc)) {
60
printf("%s -> %s\n",
src_format_desc
->short_name, dst_format_desc->short_name);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_format.c
601
const struct util_format_description *
src_format_desc
;
local
609
src_format_desc
= util_format_description(src_format);
611
if (util_is_format_compatible(
src_format_desc
, dst_format_desc)) {
624
assert(src_x %
src_format_desc
->block.width == 0);
625
assert(src_y %
src_format_desc
->block.height == 0);
628
src_row = (const uint8_t *)src + src_y*src_stride + src_x*(
src_format_desc
->block.bits/8);
635
y_step = MAX2(dst_format_desc->block.height,
src_format_desc
->block.height);
636
x_step = MAX2(dst_format_desc->block.width,
src_format_desc
->block.width);
638
assert(y_step %
src_format_desc
->block.height == 0);
641
src_step = y_step /
src_format_desc
->block.height * src_stride
[
all
...]
/xsrc/external/mit/MesaLib/dist/src/util/format/
u_format.c
649
const struct util_format_description *
src_format_desc
;
local
661
src_format_desc
= util_format_description(src_format);
663
if (util_is_format_compatible(
src_format_desc
, dst_format_desc)) {
676
assert(src_x %
src_format_desc
->block.width == 0);
677
assert(src_y %
src_format_desc
->block.height == 0);
680
src_row = (const uint8_t *)src + src_y*src_stride + src_x*(
src_format_desc
->block.bits/8);
687
y_step = MAX2(dst_format_desc->block.height,
src_format_desc
->block.height);
688
x_step = MAX2(dst_format_desc->block.width,
src_format_desc
->block.width);
690
assert(y_step %
src_format_desc
->block.height == 0);
693
src_step = y_step /
src_format_desc
->block.height * src_stride
[
all
...]
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/d3d10umd/
Resource.cpp
583
const struct util_format_description *
src_format_desc
;
local
586
src_format_desc
= util_format_description(src_resource->format);
589
assert(
src_format_desc
->block.width == dst_format_desc->block.width);
590
assert(
src_format_desc
->block.height == dst_format_desc->block.height);
591
assert(
src_format_desc
->block.bits == dst_format_desc->block.bits);
593
return util_is_format_compatible(
src_format_desc
, dst_format_desc);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_blt.c
451
const struct util_format_description *
src_format_desc
=
local
454
op.src.swizzle[x] =
src_format_desc
->swizzle[x];
Completed in 44 milliseconds
Indexes created Mon Aug 03 00:25:36 UTC 2026