OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:surfacedef
(Results
1 - 4
of
4
) sorted by null
/hardware/qcom/media/libc2dcolorconvert/
C2DColorConverter.cpp
279
C2D_YUV_SURFACE_DEF *
surfaceDef
= new C2D_YUV_SURFACE_DEF;
280
surfaceDef
->format = getC2DFormat(format);
281
surfaceDef
->width = width;
282
surfaceDef
->height = height;
283
surfaceDef
->plane0 = (void *)0xaaaaaaaa;
284
surfaceDef
->phys0 = (void *)0xaaaaaaaa;
285
surfaceDef
->stride0 = calcStride(format, width);
286
surfaceDef
->plane1 = (void *)0xaaaaaaaa;
287
surfaceDef
->phys1 = (void *)0xaaaaaaaa;
288
surfaceDef
->stride1 = calcStride(format, width)
[
all
...]
/hardware/qcom/display/msm8960/libcopybit/
copybit_c2d.cpp
523
C2D_RGB_SURFACE_DEF
surfaceDef
;
527
surfaceDef
.phys = (void*) gpuaddr;
528
surfaceDef
.buffer = (void*) (handle->base);
530
surfaceDef
.format = c2d_format |
532
surfaceDef
.width = rhs->w;
533
surfaceDef
.height = rhs->h;
534
int aligned_width = ALIGN(
surfaceDef
.width,32);
535
surfaceDef
.stride = (aligned_width * c2diGetBpp(
surfaceDef
.format))>>3;
538
&
surfaceDef
)) {
[
all
...]
/hardware/qcom/display/msm8974/libcopybit/
copybit_c2d.cpp
534
C2D_RGB_SURFACE_DEF
surfaceDef
;
538
surfaceDef
.phys = (void*) gpuaddr;
539
surfaceDef
.buffer = (void*) (handle->base);
541
surfaceDef
.format = c2d_format |
543
surfaceDef
.width = rhs->w;
544
surfaceDef
.height = rhs->h;
545
int aligned_width = ALIGN(
surfaceDef
.width,32);
546
surfaceDef
.stride = (aligned_width * c2diGetBpp(
surfaceDef
.format))>>3;
549
&
surfaceDef
)) {
[
all
...]
/hardware/qcom/display/msm8x26/libcopybit/
copybit_c2d.cpp
523
C2D_RGB_SURFACE_DEF
surfaceDef
;
527
surfaceDef
.phys = (void*) gpuaddr;
528
surfaceDef
.buffer = (void*) (handle->base);
530
surfaceDef
.format = c2d_format |
532
surfaceDef
.width = rhs->w;
533
surfaceDef
.height = rhs->h;
534
int aligned_width = ALIGN(
surfaceDef
.width,32);
535
surfaceDef
.stride = (aligned_width * c2diGetBpp(
surfaceDef
.format))>>3;
538
&
surfaceDef
)) {
[
all
...]
Completed in 1230 milliseconds