Home
last modified time | relevance | path

Searched refs:Height (Results 1 - 25 of 233) sorted by relevance

12345678910

/third_party/mesa3d/src/gallium/frontends/nine/
H A Dtexture9.c44 UINT Width, UINT Height, UINT Levels, in NineTexture9_ctor()
61 DBG("(%p) Width=%u Height=%u Levels=%u Usage=%s Format=%s Pool=%s " in NineTexture9_ctor()
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()
42 NineTexture9_ctor( struct NineTexture9 *This, struct NineUnknownParams *pParams, UINT Width, UINT Height, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, HANDLE *pSharedHandle ) NineTexture9_ctor() argument
381 NineTexture9_new( struct NineDevice9 *pDevice, UINT Width, UINT Height, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, struct NineTexture9 **ppOut, HANDLE *pSharedHandle ) NineTexture9_new() argument
[all...]
H A Dvolumetexture9.c33 UINT Width, UINT Height, UINT Depth, UINT Levels, in NineVolumeTexture9_ctor()
46 DBG("This=%p pParams=%p Width=%u Height=%u Depth=%u Levels=%u " in NineVolumeTexture9_ctor()
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, UIN in NineVolumeTexture9_new()
31 NineVolumeTexture9_ctor( struct NineVolumeTexture9 *This, struct NineUnknownParams *pParams, UINT Width, UINT Height, UINT Depth, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, HANDLE *pSharedHandle ) NineVolumeTexture9_ctor() argument
282 NineVolumeTexture9_new( struct NineDevice9 *pDevice, UINT Width, UINT Height, UINT Depth, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, struct NineVolumeTexture9 **ppOut, HANDLE *pSharedHandle ) NineVolumeTexture9_new() argument
[all...]
H A 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...]
H A 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, in NineSurface9_UnlockRect()
[all...]
H A Ddevice9ex.h115 UINT Height,
127 UINT Height,
137 UINT Height,
H A Ddevice9.c151 This->state.viewport.Height = refSurf->desc.Height; in NineDevice9_SetDefaultState()
158 This->state.scissor.maxy = refSurf->desc.Height; in NineDevice9_SetDefaultState()
827 This->cursor.h = MIN2(surf->desc.Height, 32); in NineDevice9_SetCursorProperties()
831 This->cursor.h = MIN2(surf->desc.Height, This->cursor.image->height0); in NineDevice9_SetCursorProperties()
1122 UINT Height, in NineDevice9_CreateTexture()
1133 DBG("This=%p Width=%u Height=%u Levels=%u Usage=%s Format=%s Pool=%s " in NineDevice9_CreateTexture()
1134 "ppOut=%p pSharedHandle=%p\n", This, Width, Height, Levels, in NineDevice9_CreateTexture()
1146 hr = NineTexture9_new(This, Width, Height, Levels, Usage, Format, Pool, in NineDevice9_CreateTexture()
1157 UINT Height, in NineDevice9_CreateVolumeTexture()
1120 NineDevice9_CreateTexture( struct NineDevice9 *This, UINT Width, UINT Height, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DTexture9 **ppTexture, HANDLE *pSharedHandle ) NineDevice9_CreateTexture() argument
1155 NineDevice9_CreateVolumeTexture( struct NineDevice9 *This, UINT Width, UINT Height, UINT Depth, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DVolumeTexture9 **ppVolumeTexture, HANDLE *pSharedHandle ) NineDevice9_CreateVolumeTexture() argument
1301 create_zs_or_rt_surface(struct NineDevice9 *This, unsigned type, D3DPOOL Pool, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, DWORD MultisampleQuality, BOOL Discard_or_Lockable, IDirect3DSurface9 **ppSurface, HANDLE *pSharedHandle) create_zs_or_rt_surface() argument
1354 NineDevice9_CreateRenderTarget( struct NineDevice9 *This, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, DWORD MultisampleQuality, BOOL Lockable, IDirect3DSurface9 **ppSurface, HANDLE *pSharedHandle ) NineDevice9_CreateRenderTarget() argument
1373 NineDevice9_CreateDepthStencilSurface( struct NineDevice9 *This, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, DWORD MultisampleQuality, BOOL Discard, IDirect3DSurface9 **ppSurface, HANDLE *pSharedHandle ) NineDevice9_CreateDepthStencilSurface() argument
1945 NineDevice9_CreateOffscreenPlainSurface( struct NineDevice9 *This, UINT Width, UINT Height, D3DFORMAT Format, D3DPOOL Pool, IDirect3DSurface9 **ppSurface, HANDLE *pSharedHandle ) NineDevice9_CreateOffscreenPlainSurface() argument
[all...]
H A Ddevice9ex.c196 UINT Height, in NineDevice9Ex_CreateRenderTargetEx()
214 Height, in NineDevice9Ex_CreateRenderTargetEx()
226 UINT Height, in NineDevice9Ex_CreateOffscreenPlainSurfaceEx()
242 Height, in NineDevice9Ex_CreateOffscreenPlainSurfaceEx()
252 UINT Height, in NineDevice9Ex_CreateDepthStencilSurfaceEx()
270 Height, in NineDevice9Ex_CreateDepthStencilSurfaceEx()
194 NineDevice9Ex_CreateRenderTargetEx( struct NineDevice9Ex *This, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, DWORD MultisampleQuality, BOOL Lockable, IDirect3DSurface9 **ppSurface, HANDLE *pSharedHandle, UNUSED DWORD Usage ) NineDevice9Ex_CreateRenderTargetEx() argument
224 NineDevice9Ex_CreateOffscreenPlainSurfaceEx( struct NineDevice9Ex *This, UINT Width, UINT Height, D3DFORMAT Format, D3DPOOL Pool, IDirect3DSurface9 **ppSurface, HANDLE *pSharedHandle, UNUSED DWORD Usage ) NineDevice9Ex_CreateOffscreenPlainSurfaceEx() argument
250 NineDevice9Ex_CreateDepthStencilSurfaceEx( struct NineDevice9Ex *This, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, DWORD MultisampleQuality, BOOL Discard, IDirect3DSurface9 **ppSurface, HANDLE *pSharedHandle, UNUSED DWORD Usage ) NineDevice9Ex_CreateDepthStencilSurfaceEx() argument
/third_party/mesa3d/src/mesa/main/
H A 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...]
H A 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 in _mesa_init_viewport()
[all...]
H A 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()
H A 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()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A 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;
814 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height);
892 // Height is the issue height computed from virtual register dependencies alone.
893 static unsigned updatePhysDepsUpwards(const MachineInstr &MI, unsigned Height,
914 // update MI Height to consider the physreg dependencies.
926 Height = std::max(Height, DepHeigh
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A 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()
H A DStreamProducerD3DTexture.cpp33 if (desc.Width < 1 || desc.Height < 1) in GetGLDescFromTex()
37 out->height = desc.Height; in GetGLDescFromTex()
84 if ((desc.Width % 2) != 0 || (desc.Height % 2) != 0) in GetGLDescFromTex()
/third_party/skia/tests/
H A 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h146 /// For regunits: Height of the highest user in the trace.
147 unsigned Height; member
149 LiveInReg(unsigned Reg, unsigned Height = 0) : Reg(Reg), Height(Height) {} in LiveInReg()
249 unsigned Height; member
/third_party/mesa3d/src/mesa/state_tracker/
H A 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()
H A Dst_cb_clear.c232 const GLfloat fb_height = (GLfloat) fb->Height; in clear_with_quad()
374 scissor->Y + scissor->Height < (int)rb->Height); in is_scissor_enabled()
510 .maxy = MAX2(scissor->Y + scissor->Height, 0), in st_Clear()
521 miny = fb->Height - scissor_state.maxy; in st_Clear()
522 maxy = fb->Height - scissor_state.miny; in st_Clear()
529 scissor_state.maxy = MIN2(scissor_state.maxy, fb->Height); in st_Clear()
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A 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()
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsmall_glyph_metrics.h48 int32_t Height();
69 int32_t Height();
H A Dbig_glyph_metrics.h52 int32_t Height();
82 int32_t Height();
/third_party/skia/third_party/externals/imgui/misc/freetype/
H A Dimgui_freetype.cpp108 int Height; // Glyph's height in pixels. member
261 out_glyph_info->Height = (int)ft_bitmap->rows; in RenderGlyphAndGetInfo()
547 const int bitmap_size_in_bytes = src_glyph.Info.Width * src_glyph.Info.Height * 4; in ImFontAtlasBuildWithFreeTypeEx()
560 src_tmp.Rects[glyph_i].h = (stbrp_coord)(src_glyph.Info.Height + padding); in ImFontAtlasBuildWithFreeTypeEx()
649 IM_ASSERT(info.Height + padding <= pack_rect.h); in ImFontAtlasBuildWithFreeTypeEx()
657 float y1 = y0 + info.Height; in ImFontAtlasBuildWithFreeTypeEx()
661 float v1 = (ty + info.Height) / (float)atlas->TexHeight; in ImFontAtlasBuildWithFreeTypeEx()
676 for (int y = 0; y < info.Height; y++, blit_dst += blit_dst_stride, blit_src += blit_src_stride) in ImFontAtlasBuildWithFreeTypeEx()
683 for (int y = 0; y < info.Height; y++, blit_dst += blit_dst_stride, blit_src += blit_src_stride) in ImFontAtlasBuildWithFreeTypeEx()
/third_party/mesa3d/src/egl/drivers/dri2/
H A Dplatform_wayland.c389 dri2_surf->base.Height == wl_win->height) in resize_callback()
403 dri2_surf->base.Height = wl_win->height; in resize_callback()
630 dri2_surf->base.Height = window->height; in dri2_wl_create_window_surface()
901 dri2_surf->base.Height, in create_dri_image_diff_gpu()
958 dri2_surf->base.Height, in create_dri_image_from_dmabuf_feedback()
996 dri2_surf->base.Height, in create_dri_image()
1127 dri2_surf->base.Height != dri2_surf->wl_win->height)) { in update_buffers()
1130 dri2_surf->base.Height = dri2_surf->wl_win->height; in update_buffers()
1215 *height = dri2_surf->base.Height; in dri2_wl_get_buffers_with_format()
1500 dri2_surf->base.Height in try_damage_buffer()
[all...]
/third_party/mesa3d/src/gallium/winsys/d3d12/wgl/
H A Dd3d12_wgl_framebuffer.cpp106 desc.Height = templ->height0; in d3d12_wgl_framebuffer_resize()
146 if (FAILED(framebuffer->swapchain->ResizeBuffers(num_buffers, desc.Width, desc.Height, desc.Format, desc.Flags))) { in d3d12_wgl_framebuffer_resize()
204 templ.height0 = res_desc.Height; in d3d12_wgl_framebuffer_get_resource()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/win32/
H A DNativeWindow11Win32.cpp122 swapChainDesc.Height = height; in createSwapChain()
155 swapChainDesc.Height = height; in createSwapChain()
183 swapChainDesc.BufferDesc.Height = height; in createSwapChain()

Completed in 22 milliseconds

12345678910