Home
last modified time | relevance | path

Searched refs:height (Results 1 – 25 of 42) sorted by relevance

12

/CTR-SDK-4.2.5/sources/libraries/gr/CTR/
Dgr_FrameBuffer.cpp103 *command++ = PICA_CMD_DATA_RENDER_BUFFER_RESOLUTION( width, height ); in MakeCommand()
109 *command++ = PICA_CMD_DATA_RENDER_BUFFER_RESOLUTION( width, height ); in MakeCommand()
123 width( 240 ), height( 400 ), in ColorBuffer()
137 width( 240 ), height( 400 ), in DepthStencilBuffer()
149 width( 240 ), height( 400 ) in FrameBuffer()
185 colorByteSize = colorBuffer.width * colorBuffer.height * 4; in MakeClearRequest()
197 colorByteSize = colorBuffer.width * colorBuffer.height * 2; in MakeClearRequest()
206 colorByteSize = colorBuffer.width * colorBuffer.height * 2; in MakeClearRequest()
216 colorByteSize = colorBuffer.width * colorBuffer.height * 2; in MakeClearRequest()
238 depthByteSize = depthStencilBuffer.width * depthStencilBuffer.height * 4; in MakeClearRequest()
[all …]
Dgr_Viewport.cpp31 u32 height24 = Float32ToFloat24( height / 2.f ); in MakeCommand()
32 u32 height31 = Float32ToFloat31( 2.f / height ) << 1; in MakeCommand()
Dgr_Scissor.cpp28 s32 temp_height = y + height - 1; in MakeCommand()
Dgr_Texture.cpp37 *command++ = PICA_CMD_DATA_TEXTURE_SIZE( width, height ); in MakeCommand()
120 *command++ = PICA_CMD_DATA_TEXTURE_SIZE( width, height ); in MakeCommand()
165 *command++ = PICA_CMD_DATA_TEXTURE_SIZE( width, height ); in MakeCommand()
286 height( 0 ), in UnitBase()
/CTR-SDK-4.2.5/include/nn/gr/CTR/
Dgr_Viewport.h42 height( 320 ) in Viewport()
58 height( height_ ) in Viewport()
84 x = x_; y = y_; width = width_; height = height_; in Set()
106 u32 height; variable
Dgr_Scissor.h42 height( 320 ), in Scissor()
64 height( height_ ), in Scissor()
116 x = x_; y = y_; width = width_; height = height_; in Set()
155 u32 height; variable
Dgr_FrameBuffer.h87 s32 height; variable
151 s32 height; variable
210 s32 height; variable
/CTR-SDK-4.2.5/include/nn/camera/CTR/
Dcamera_Api.h47 void SetTransferLines( Port port, s16 lines, s16 width, s16 height );
48 s16 GetMaxLines( s16 width, s16 height );
49 void SetTransferBytes( Port port, size_t bytes, s16 width, s16 height );
51 size_t GetMaxBytes( s16 width, s16 height );
68 …nn::Result SetDetailSize( CameraSelect select, s16 width, s16 height, s16 cropX0, s16 cropY0, s16 …
76 …Result SetAutoExposureWindow( CameraSelect select, s16 startX, s16 startY, s16 width, s16 height );
77 …lt SetAutoWhiteBalanceWindow( CameraSelect select, s16 startX, s16 startY, s16 width, s16 height );
245 inline void SetTransferLines( Port port, s16 lines, s16 width, s16 height ) in SetTransferLines() argument
247 detail::SetTransferLines(port, lines, width, height); in SetTransferLines()
264 inline s16 GetMaxLines( s16 width, s16 height ) in GetMaxLines() argument
[all …]
Dcamera_Camera.h122 …static nn::Result SetTransferLines( nn::camera::CTR::Port port, s16 lines, s16 width, s16 height );
123 static nn::Result GetMaxLines( s16* pLines, s16 width, s16 height );
124 …tic nn::Result SetTransferBytes( nn::camera::CTR::Port port, size_t bytes, s16 width, s16 height );
126 static nn::Result GetMaxBytes( size_t* pBytes, s16 width, s16 height );
143 …sult SetDetailSize( nn::camera::CTR::CameraSelect camera, s16 width, s16 height, s16 cropX0, s16 c…
151 …osureWindow( nn::camera::CTR::CameraSelect camera, s16 startX, s16 startY, s16 width, s16 height );
152 …lanceWindow( nn::camera::CTR::CameraSelect camera, s16 startX, s16 startY, s16 width, s16 height );
/CTR-SDK-4.2.5/include/nn/font/CTR/
Dfont_RectDrawerCommand.h62 u16 height; // member
97 #define NN_FONT_CMD_SET_VIEWPORT( x, y, width, height ) \ argument
101 nn::util::Float24::Float32ToBits24( (height) / 2.0f ), \
102 nn::util::Float31::Float32ToBits31( 2.0f / (height) ) << 1, \
136 | NN_FONT_CMD_SCISSOR_VAL( y, (cbSz).height ) << 16, \
138 | NN_FONT_CMD_SCISSOR_VAL( (y) + (h) - 1, (cbSz).height ) << 16
152 ((cbSz).width - 1) | ((cbSz).height - 1) << 16
/CTR-SDK-4.2.5/include/nn/gd/CTR/
Dgd_Rasterizer.h102 … Viewport(u32 x, u32 y, u32 width, u32 height): m_X(x), m_Y(y), m_Width(width), m_Height(height) {} in Viewport() argument
120 void Set(u32 x, u32 y, u32 width, u32 height){ in Set() argument
124 m_Height = height; in Set()
Dgd_Resource.h375 …static nnResult ConvertTextureResourceToNativeFormat(Format format, u32 width, u32 height, const u…
464 …static nnResult GenerateMipMapsCPU(NativeFormat format, u32 width, u32 height, const u8* dataSrc, …
505 …sedTextureResourceToNativeFormat(CompressedFormat format, u32 width, u32 height, u8* dataSrc, u8* …
/CTR-SDK-4.2.5/include/nn/util/
Dutil_Rect.h133 void SetHeight(f32 height) { bottom = top + height; } in SetHeight()
171 void SetOriginAndSize(f32 x, f32 y, f32 width, f32 height ) in SetOriginAndSize()
176 bottom = y + height; in SetOriginAndSize()
/CTR-SDK-4.2.5/include/nn/font/
Dfont_Font.h43 u16 height; // member
60 u16 height);
121 u8 height; // member
/CTR-SDK-4.2.5/include/nn/tpl/CTR/
Dtpl_PackagerType.h71 unsigned short height; // member
/CTR-SDK-4.2.5/include/nn/gx/CTR/
Dgx_MacroMisc.h111 #define PICA_CMD_DATA_RENDER_BUFFER_RESOLUTION( width, height ) \ argument
113 (height - 1) << 12 | \
441 #define PICA_CMD_DATA_VIEWPORT_HEIGHT(height) (height) argument
Dgx_MacroOld.h241 #define PICA_CMD_DATA_RENDER_BUF_RESOLUTION( width, height ) ( (width) | (height) << 12 | 0x0100000… argument
514 #define PICA_CMD_DATA_TEX_SIZE( width, height ) \ argument
515 ( (width) << 16 | (height) )
Dgx_CTRRaw.h37 … cmdlist, const GLvoid* srcaddr, GLvoid* dstaddr, GLsizei width, GLsizei height, GLenum format, GL…
40 …st* cmdlist, const GLvoid* srcaddr, GLvoid* dstaddr, GLsizei width, GLsizei height, GLenum format);
/CTR-SDK-4.2.5/sources/libraries/tpl/CTR/
Dtpl_ReadTexturePackage.cpp136 pTexInfo->height = texInfo->height; in GetTextureInfo()
/CTR-SDK-4.2.5/tools/FontConverter/xlor/
Dletter-order.dtd24 <!ATTLIST area height CDATA #IMPLIED> attribute
/CTR-SDK-4.2.5/include/nn/y2r/CTR/
Dy2r_Api.h68 size_t GetOutputImageSize( s16 lineWidth, s16 height, OutputFormat format );
440 inline size_t GetOutputImageSize( s16 lineWidth, s16 height, OutputFormat format ) in GetOutputImageSize() argument
442 return detail::GetOutputImageSize(lineWidth, height, format); in GetOutputImageSize()
/CTR-SDK-4.2.5/include/nn/jpeg/CTR/
Djpeg_MpEncoder.h168 …void SetThumbnailSize(u32 width, u32 height, PixelSampling dstPixelSampling = DEFAULT_THUMBNAIL_PI…
173 m_TemporarySetting.thumbnailHeight = height;
2178 u32 height,
2272 u32 height,
2395 u32 height,
2503 u32 height,
/CTR-SDK-4.2.5/include/gles2/
Dgl2.h528 …Lenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLs…
529 …GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
530 …arget, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
598 GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, …
600 …IENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
602 GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height);
611 …Lenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLe…
646 GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height);
/CTR-SDK-4.2.5/documents/shader/Reference/css/
Dbutton.css26 height : 100%;
/CTR-SDK-4.2.5/documents/api/css/
Dbutton.css26 height : 100%;

12