| /CTR-SDK-0.14.4/sources/libraries/gr/CTR/ |
| D | gr_FrameBuffer.cpp | 89 *command++ = PICA_CMD_DATA_RENDER_BUFFER_RESOLUTION( width, height ); in MakeCommand() 95 *command++ = PICA_CMD_DATA_RENDER_BUFFER_RESOLUTION( width, height ); in MakeCommand() 109 width( 240 ), height( 400 ), in ColorBuffer() 123 width( 240 ), height( 400 ), in DepthStencilBuffer() 135 width( 240 ), height( 400 ) in FrameBuffer() 165 colorByteSize = colorBuffer.width * colorBuffer.height * 4; in MakeClearRequest() 175 colorByteSize = colorBuffer.width * colorBuffer.height * 2; in MakeClearRequest() 184 colorByteSize = colorBuffer.width * colorBuffer.height * 18 / 8; in MakeClearRequest() 192 colorByteSize = colorBuffer.width * colorBuffer.height * 12 / 8; in MakeClearRequest() 213 depthByteSize = depthStencilBuffer.width * depthStencilBuffer.height * 4; in MakeClearRequest() [all …]
|
| D | gr_Viewport.cpp | 31 u32 height24 = Float32ToFloat24( height / 2.f ); in MakeCommand() 32 u32 height31 = Float32ToFloat31( 2.f / height ) << 1; in MakeCommand()
|
| D | gr_Scissor.cpp | 28 s32 temp_height = y + height - 1; in MakeCommand()
|
| D | gr_Texture.cpp | 37 *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() 250 height( 0 ), in UnitBase()
|
| /CTR-SDK-0.14.4/include/nn/gr/CTR/ |
| D | gr_Viewport.h | 39 Viewport( void ) : x( 0 ), y( 0 ), width( 240 ), height( 320 ) {} in Viewport() 49 …s32 x_, s32 y_, u32 width_, u32 height_ ) : x( x_ ), y( y_ ), width( width_ ), height( height_ ) {} in Viewport() 73 x = x_; y = y_; width = width_; height = height_; in Set() 95 u32 height; variable
|
| D | gr_Scissor.h | 37 …Scissor() : isEnable( true ), x( 0 ), y( 0 ), width( 240 ), height( 320 ), bufferWidth( 256 ), buf… in Scissor() 51 …: isEnable( isEnable_ ), x( x_ ), y( y_ ), width( width_ ), height( height_ ), bufferWidth( buffer… in Scissor() 74 x = x_; y = y_; width = width_; height = height_; in Set() 113 u32 height; variable
|
| D | gr_FrameBuffer.h | 86 s32 height; variable 140 s32 height; variable 199 s32 height; variable
|
| D | gr_Texture.h | 56 u16 height; variable
|
| /CTR-SDK-0.14.4/include/nn/camera/CTR/ |
| D | camera_Api.h | 47 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 ); 231 inline void SetTransferLines( Port port, s16 lines, s16 width, s16 height ) in SetTransferLines() argument 233 detail::SetTransferLines(port, lines, width, height); in SetTransferLines() 250 inline s16 GetMaxLines( s16 width, s16 height ) in GetMaxLines() argument [all …]
|
| D | camera_Camera.h | 123 …static nn::Result SetTransferLines( nn::camera::CTR::Port port, s16 lines, s16 width, s16 height ); 124 static nn::Result GetMaxLines( s16* pLines, s16 width, s16 height ); 125 …tic nn::Result SetTransferBytes( nn::camera::CTR::Port port, size_t bytes, s16 width, s16 height ); 127 static nn::Result GetMaxBytes( size_t* pBytes, s16 width, s16 height ); 144 …sult SetDetailSize( nn::camera::CTR::CameraSelect camera, s16 width, s16 height, s16 cropX0, s16 c… 152 …osureWindow( nn::camera::CTR::CameraSelect camera, s16 startX, s16 startY, s16 width, s16 height ); 153 …lanceWindow( nn::camera::CTR::CameraSelect camera, s16 startX, s16 startY, s16 width, s16 height );
|
| /CTR-SDK-0.14.4/include/nn/font/CTR/ |
| D | font_RectDrawerCommand.h | 62 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
|
| D | font_CharWriter.h | 283 f32 height); 289 void SetFontSize(f32 height);
|
| /CTR-SDK-0.14.4/include/nn/util/ |
| D | util_Rect.h | 133 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-0.14.4/include/nn/font/ |
| D | font_Font.h | 43 u16 height; //!< 高さ member 60 u16 height); 121 u8 height; //!< セルの高さ member
|
| /CTR-SDK-0.14.4/include/nn/tpl/CTR/ |
| D | tpl_PackagerType.h | 71 unsigned short height; //!< 高さ member
|
| /CTR-SDK-0.14.4/include/nn/gx/CTR/ |
| D | gx_MacroMisc.h | 110 #define PICA_CMD_DATA_RENDER_BUFFER_RESOLUTION( width, height ) \ argument 112 (height - 1) << 12 | \ 440 #define PICA_CMD_DATA_VIEWPORT_HEIGHT(height) (height) argument
|
| D | gx_MacroOld.h | 240 #define PICA_CMD_DATA_RENDER_BUF_RESOLUTION( width, height ) ( (width) | (height) << 12 | 0x0100000… argument 513 #define PICA_CMD_DATA_TEX_SIZE( width, height ) \ argument 514 ( (width) << 16 | (height) )
|
| D | gx_CTR.h | 119 …erCommand(const GLvoid* srcaddr, GLvoid* dstaddr, GLsizei width, GLsizei height, GLenum format, GL… 152 … NNGX_APIENTRY nngxDisplaybufferStorage(GLenum format, GLsizei width, GLsizei height, GLenum area); 159 …erBlockImage(const GLvoid* srcaddr, GLvoid* dstaddr, GLsizei width, GLsizei height, GLenum format);
|
| /CTR-SDK-0.14.4/sources/libraries/tpl/CTR/ |
| D | tpl_ReadTexturePackage.cpp | 132 pTexInfo->height = texInfo->height; in GetTextureInfo()
|
| /CTR-SDK-0.14.4/tools/FontConverter/xlor/ |
| D | letter-order.dtd | 24 <!ATTLIST area height CDATA #IMPLIED> attribute
|
| /CTR-SDK-0.14.4/documents/api/css/ |
| D | button.css | 26 height : 100%;
|
| D | main.css | 105 height : 4px; 228 line-height : 18px;
|
| /CTR-SDK-0.14.4/include/nn/y2r/CTR/ |
| D | y2r_Api.h | 68 size_t GetOutputImageSize( s16 lineWidth, s16 height, OutputFormat format ); 438 inline size_t GetOutputImageSize( s16 lineWidth, s16 height, OutputFormat format ) in GetOutputImageSize() argument 440 return detail::GetOutputImageSize(lineWidth, height, format); in GetOutputImageSize()
|
| /CTR-SDK-0.14.4/include/nn/jpeg/CTR/ |
| D | jpeg_MpEncoder.h | 168 …void SetThumbnailSize(u32 width, u32 height, PixelSampling dstPixelSampling = DEFAULT_THUMBNAIL_PI… 173 m_TemporarySetting.thumbnailHeight = height; 2176 u32 height, 2270 u32 height, 2393 u32 height, 2501 u32 height,
|
| /CTR-SDK-0.14.4/include/gles2/ |
| D | gl2.h | 528 …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);
|