Home
last modified time | relevance | path

Searched refs:Height (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/third_party/mesa3d/src/gallium/frontends/nine/
Dtexture9.c44 UINT Width, UINT Height, UINT Levels, in NineTexture9_ctor() argument
62 "pSharedHandle=%p\n", This, Width, Height, Levels, in NineTexture9_ctor()
66 user_assert(Width && Height, D3DERR_INVALIDCALL); in NineTexture9_ctor()
122 user_assert(!(Width % w) && !(Height % h), D3DERR_INVALIDCALL); in NineTexture9_ctor()
129 info->height0 = Height; in NineTexture9_ctor()
134 info->last_level = util_logbase2(MAX2(Width, Height)); in NineTexture9_ctor()
158 This->base.pstype = (Height == 1) ? 1 : 0; in NineTexture9_ctor()
164 Width, Height, in NineTexture9_ctor()
170 Width, Height, in NineTexture9_ctor()
194 sfdesc.Height = u_minify(Height, l); in NineTexture9_ctor()
[all …]
Dvolumetexture9.c33 UINT Width, UINT Height, UINT Depth, UINT Levels, in NineVolumeTexture9_ctor() argument
48 This, pParams, Width, Height, Depth, Levels, in NineVolumeTexture9_ctor()
51 user_assert(Width && Height && Depth, D3DERR_INVALIDCALL); in NineVolumeTexture9_ctor()
76 user_assert(!(Width % w) && !(Height % h), D3DERR_INVALIDCALL); in NineVolumeTexture9_ctor()
83 info->height0 = Height; in NineVolumeTexture9_ctor()
88 info->last_level = util_logbase2(MAX2(MAX2(Width, Height), Depth)); in NineVolumeTexture9_ctor()
120 voldesc.Height = u_minify(Height, l); in NineVolumeTexture9_ctor()
283 UINT Width, UINT Height, UINT Depth, UINT Levels, in NineVolumeTexture9_new() argument
291 Width, Height, Depth, Levels, in NineVolumeTexture9_new()
Dvolume9.c90 This->info.height0 = pDesc->Height; in NineVolume9_ctor()
112 This->stride, pDesc->Height); in NineVolume9_ctor()
129 pDesc->Height); in NineVolume9_ctor()
285 pBox->Top == 0 && pBox->Bottom == This->desc.Height) || in NineVolume9_LockBox()
305 user_assert(pBox->Bottom <= This->desc.Height, D3DERR_INVALIDCALL); in NineVolume9_LockBox()
309 if (u_box_clip_2d(&box, &box, This->desc.Width, This->desc.Height) < 0) { in NineVolume9_LockBox()
314 u_box_3d(0, 0, 0, This->desc.Width, This->desc.Height, This->desc.Depth, in NineVolume9_LockBox()
386 u_box_3d(0, 0, 0, This->desc.Width, This->desc.Height, This->desc.Depth, in NineVolume9_UnlockBox()
400 This->desc.Width, This->desc.Height, in NineVolume9_UnlockBox()
449 src_box.height = From->desc.Height; in NineVolume9_CopyMemToDefault()
[all …]
Dsurface9.c104 This->base.info.height0 = pDesc->Height; in NineSurface9_ctor()
140 user_assert(!(pDesc->Width % w) && !(pDesc->Height % h), D3DERR_INVALIDCALL); in NineSurface9_ctor()
160 pDesc->Height, in NineSurface9_ctor()
174 pDesc->Height, in NineSurface9_ctor()
205 … nine_context_clear_render_target(pParams->device, This, 0, 0, 0, pDesc->Width, pDesc->Height); in NineSurface9_ctor()
311 This->desc.Width, This->desc.Height, in NineSurface9_Dump()
467 pRect->top == 0 && pRect->bottom == This->desc.Height) || in NineSurface9_LockRect()
487 u_box_origin_2d(This->desc.Width, This->desc.Height, &box); in NineSurface9_LockRect()
581 This->desc.Width, This->desc.Height); in NineSurface9_UnlockRect()
586 This->desc.Width, This->desc.Height, &dst_box); in NineSurface9_UnlockRect()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11screencapture.cpp273 texture_desc.Height = output_desc_.ModeDesc.Height; in Init()
382 INT DesktopHeight = FullDesc.Height; in DrawMouse()
420 PtrHeight = static_cast<INT>(ptr_info_.shape_info.Height); in DrawMouse()
456 Desc.Height = PtrHeight; in DrawMouse()
516 VP.Height = static_cast<FLOAT>(FullDesc.Height); in DrawMouse()
596 *height = output_desc_.ModeDesc.Height; in GetSize()
1015 FullDesc.Width, FullDesc.Height); in CopyMove()
1042 INT CenterY = FullDesc->Height / 2; in SetDirtyVert()
1045 INT Height = FullDesc->Height; in SetDirtyVert() local
1061 Dirty->bottom / static_cast<FLOAT>(ThisDesc->Height)); in SetDirtyVert()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/vivante/
DSDL_vivantevideo.h44 void (EGLAPIENTRY *fbGetDisplayGeometry)(EGLNativeDisplayType Display, int *Width, int *Height);
45 …void (EGLAPIENTRY *fbGetDisplayInfo)(EGLNativeDisplayType Display, int *Width, int *Height, unsign…
47 …e (EGLAPIENTRY *fbCreateWindow)(EGLNativeDisplayType Display, int X, int Y, int Width, int Height);
48 …PIENTRY *fbGetWindowGeometry)(EGLNativeWindowType Window, int *X, int *Y, int *Width, int *Height);
49 …WindowInfo)(EGLNativeWindowType Window, int *X, int *Y, int *Width, int *Height, int *BitsPerPixel…
/third_party/mesa3d/src/mesa/main/
Ddebug.c278 buffer = malloc(img->Width * img->Height in write_texture_image()
285 0, 0, 0, img->Width, img->Height, img->Depth, in write_texture_image()
292 write_ppm(s, buffer, img->Width, img->Height, 4, 0, 1, 2, GL_FALSE); in write_texture_image()
329 buffer = malloc(rb->Width * rb->Height * 4); in _mesa_write_renderbuffer_image()
331 st_ReadPixels(ctx, 0, 0, rb->Width, rb->Height, in _mesa_write_renderbuffer_image()
342 write_ppm(s, buffer, rb->Width, rb->Height, 4, 0, 1, 2, GL_TRUE); in _mesa_write_renderbuffer_image()
371 texImg->Width, texImg->Height, texImg->Depth, in dump_texture()
423 rb->Name, rb->Width, rb->Height, in dump_renderbuffer()
458 const GLuint h = ctx->DrawBuffer->Height; in _mesa_dump_color_buffer()
488 const GLuint h = ctx->DrawBuffer->Height; in _mesa_dump_depth_buffer()
[all …]
Dviewport.c75 ctx->ViewportArray[idx].Height == height) in set_viewport_no_notify()
84 ctx->ViewportArray[idx].Height = height; in set_viewport_no_notify()
89 GLfloat Width, Height; /**< size */ member
103 clamp_viewport(ctx, &input.X, &input.Y, &input.Width, &input.Height); in viewport()
117 set_viewport_no_notify(ctx, i, input.X, input.Y, input.Width, input.Height); in viewport()
182 &inputs[i].Width, &inputs[i].Height); in viewport_array()
185 inputs[i].Width, inputs[i].Height); in viewport_array()
221 if (p[i].Width < 0 || p[i].Height < 0) { in _mesa_ViewportArrayv()
225 i + first, p[i].Width, p[i].Height); in _mesa_ViewportArrayv()
479 ctx->ViewportArray[i].Height = 0; in _mesa_init_viewport()
[all …]
Dscissor.c51 height == ctx->Scissor.ScissorArray[idx].Height) in set_scissor_no_notify()
63 ctx->Scissor.ScissorArray[idx].Height = height; in set_scissor_no_notify()
140 rect[i].Width, rect[i].Height); in scissor_array()
180 if (p[i].Width < 0 || p[i].Height < 0) { in _mesa_ScissorArrayv()
183 i, p[i].Width, p[i].Height); in _mesa_ScissorArrayv()
297 newval[i].Height = box[3]; in _mesa_WindowRectanglesEXT()
Dframebuffer.c286 if (rb->Width != width || rb->Height != height) { in _mesa_resize_framebuffer()
289 assert(rb->Height == height); in _mesa_resize_framebuffer()
300 fb->Height = height; in _mesa_resize_framebuffer()
335 if (ctx->Scissor.ScissorArray[idx].Y + ctx->Scissor.ScissorArray[idx].Height < bbox[3]) { in _mesa_intersect_scissor_bounding_box()
336 bbox[3] = ctx->Scissor.ScissorArray[idx].Y + ctx->Scissor.ScissorArray[idx].Height; in _mesa_intersect_scissor_bounding_box()
370 bbox[3] = buffer->Height; in scissor_bounding_box()
573 fb->Height == 0) { in update_color_read_buffer()
970 fprintf(stderr, " Size: %u x %u Status: %s\n", fb->Width, fb->Height, in _mesa_print_framebuffer()
983 texImage->Width, texImage->Height, texImage->Depth, in _mesa_print_framebuffer()
990 att->Renderbuffer->Width, att->Renderbuffer->Height, in _mesa_print_framebuffer()
/third_party/gstreamer/gstplugins_bad/sys/winscreencap/
Ddxgicapture.c251 self->dupl_desc.ModeDesc.Height != old_dupl_desc.ModeDesc.Height || in initialize_output_duplication()
639 ? self->pointer_shape_info.Height / 2 : self->pointer_shape_info.Height; in _draw_pointer()
759 new_desc.Height = self->dupl_desc.ModeDesc.Height; in _create_texture()
810 self->view_port.Height = (float) self->work_texture_desc.Height; in _setup_texture()
1093 dst_desc->Height); in _set_verteces()
1100 (float) rect->bottom / (float) src_desc->Height}; in _set_verteces()
1103 (float) rect->bottom / (float) src_desc->Height}; in _set_verteces()
1106 (float) rect->top / (float) src_desc->Height}; in _set_verteces()
1109 (float) rect->top / (float) src_desc->Height}; in _set_verteces()
1114 (float) rect->top / (float) src_desc->Height}; in _set_verteces()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineTraceMetrics.cpp373 unsigned Height = SuccTBI->InstrHeight; in pickTraceSucc() local
374 if (!Best || Height < BestHeight) { in pickTraceSucc()
376 BestHeight = Height; in pickTraceSucc()
776 unsigned Len = LIR.Height + Cycles[DefMI].Depth; in computeCrossBlockCriticalPath()
814 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); in updateDepth()
893 static unsigned updatePhysDepsUpwards(const MachineInstr &MI, unsigned Height, in updatePhysDepsUpwards() argument
926 Height = std::max(Height, DepHeight); in updatePhysDepsUpwards()
938 if (LRU.Cycle <= Height && LRU.MI != &MI) { in updatePhysDepsUpwards()
939 LRU.Cycle = Height; in updatePhysDepsUpwards()
946 return Height; in updatePhysDepsUpwards()
[all …]
/third_party/openh264/autotest/performanceTest/
DparsePerfData.sh17 local Height=""
40 Height=`echo $line | awk 'BEGIN {FS=":"} {print $'${seperatorNum}'}'`
50 echo "${FileName},"${Width}x${Height}",${Frames},${FPS}"
59 Height=`echo $line | awk 'BEGIN {FS=":"} {print $'${seperatorNum}'}'`
/third_party/json/doc/examples/
Dparse__istream__parser_callback_t.output4 "Height": 600,
12 "Height": 125,
24 "Height": 600,
Dparse__string__parser_callback_t.output4 "Height": 600,
12 "Height": 125,
24 "Height": 600,
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DMappedSubresourceVerifier11.cpp33 ASSERT(desc.Height % dxgiFormatInfo.blockHeight == 0); in getPitchCount()
34 return desc.Height / dxgiFormatInfo.blockHeight; in getPitchCount()
51 ASSERT(desc.Height); in setDesc()
64 ASSERT(desc.Height); in setDesc()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DMappedSubresourceVerifier11.cpp33 ASSERT(desc.Height % dxgiFormatInfo.blockHeight == 0); in getPitchCount()
34 return desc.Height / dxgiFormatInfo.blockHeight; in getPitchCount()
51 ASSERT(desc.Height); in setDesc()
64 ASSERT(desc.Height); in setDesc()
/third_party/openh264/test/encoder_binary_comparison/Scripts/
Drun_BitStreamToYUV.sh34 local Height=""
43 Height=`echo $line | awk 'BEGIN {FS="[:\n]"} {print $2}'`
46 echo "${Width} ${Height}"
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineTraceMetrics.h147 unsigned Height; member
149 LiveInReg(unsigned Reg, unsigned Height = 0) : Reg(Reg), Height(Height) {} in Reg()
249 unsigned Height; member
/third_party/flutter/skia/tests/
DCachedDecodingPixelRefTest.cpp32 static int Height() { return 10; } in Height() function in TestImageGenerator
46 return SkImageInfo::Make(TestImageGenerator::Width(), TestImageGenerator::Height(), in GetMyInfo()
111 REPORTER_ASSERT(r, TestImageGenerator::Height() == image->height()); in DEF_TEST()
115 bitmap.allocN32Pixels(TestImageGenerator::Width(), TestImageGenerator::Height()); in DEF_TEST()
/third_party/skia/tests/
DCachedDecodingPixelRefTest.cpp31 static int Height() { return 10; } in Height() function in TestImageGenerator
45 return SkImageInfo::Make(TestImageGenerator::Width(), TestImageGenerator::Height(), in GetMyInfo()
109 REPORTER_ASSERT(r, TestImageGenerator::Height() == image->height()); in DEF_TEST()
113 bitmap.allocN32Pixels(TestImageGenerator::Width(), TestImageGenerator::Height()); in DEF_TEST()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_video_screen.cpp90 decodeSupport.Height = resolutionsLevelList[idxResol].resolution.Height; in get_max_level_resolution_video_decode_support()
518 return bestSupportedConfig.resolution.Height; in d3d12_screen_get_video_param_decode()
567 uint Height; in d3d12_has_video_process_support() member
588 supportCaps.InputSample.Height = resolutionsList[idxResol].Height; in d3d12_has_video_process_support()
634 const UINT Height = 720; in d3d12_screen_get_video_param_postproc() local
638 { Width, Height, { InputFormat, InputColorSpace } }, in d3d12_screen_get_video_param_postproc()
657 return supportCaps.InputSample.Height; in d3d12_screen_get_video_param_postproc()
740 return maxResEncode.Height; in d3d12_screen_get_video_param_encode()
/third_party/flutter/skia/third_party/externals/sdl/src/video/winrt/
DSDL_winrtpointerinput.cpp88 outputPosition.Y = rawPosition.Y / nativeWindow->Bounds.Height; in WINRT_TransformCursorPosition()
94 outputPosition.Y = rawPosition.Y / nativeWindow->Bounds.Height; in WINRT_TransformCursorPosition()
98 outputPosition.Y = 1.0f - (rawPosition.Y / nativeWindow->Bounds.Height); in WINRT_TransformCursorPosition()
101 outputPosition.X = rawPosition.Y / nativeWindow->Bounds.Height; in WINRT_TransformCursorPosition()
105 outputPosition.X = 1.0f - (rawPosition.Y / nativeWindow->Bounds.Height); in WINRT_TransformCursorPosition()
/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdkav1dec.c82 decoder->param.mfx.FrameInfo.Height = in gst_msdkav1dec_configure()
95 decoder->param.mfx.FrameInfo.Height = in gst_msdkav1dec_preinit_decoder()
96 GST_ROUND_UP_16 (decoder->param.mfx.FrameInfo.Height); in gst_msdkav1dec_preinit_decoder()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_atom_scissor.c69 GLint ymax = MAX2(0, ctx->Scissor.ScissorArray[i].Y + ctx->Scissor.ScissorArray[i].Height); in st_update_scissor()
90 miny = fb->Height - scissor[i].maxy; in st_update_scissor()
91 maxy = fb->Height - scissor[i].miny; in st_update_scissor()
130 new_rects[i].maxy = MAX2(rect->Y + rect->Height, 0); in st_update_window_rectangles()

12345678910>>...18