Home
last modified time | relevance | path

Searched refs:alpha (Results 1 – 25 of 28) sorted by relevance

12

/NW4C-1.3.3/include/nw/ut/
Dut_Color.h77 /* ctor */ /*implicit*/ Color8(s32 red, s32 green, s32 blue, s32 alpha) in Color8()
81 a(static_cast<u8>(alpha)) in Color8()
457 s32 alpha = ALPHA_OPACITY )
462 a = static_cast<u8>(alpha);
613 /* ctor */ FloatColor(f32 red, f32 green, f32 blue, f32 alpha) in FloatColor()
614 : r(red), g(green), b(blue), a(alpha) in FloatColor()
939 f32 alpha = ALPHA_OPACITY )
944 a = alpha;
970 f32 alpha) in SetAlpha()
972 this->Set(r, g, b, alpha); in SetAlpha()
[all …]
/NW4C-1.3.3/include/nw/lyt/
Dlyt_Window.h429 u8 alpha);
437 u8 alpha);
445 u8 alpha);
453 u8 alpha);
Dlyt_DrawInfo.h204 void SetGlobalAlpha(f32 alpha) in SetGlobalAlpha() argument
206 m_GlobalAlpha = alpha; in SetGlobalAlpha()
Dlyt_Pane.h621 void SetAlpha(u8 alpha) in SetAlpha() argument
623 m_Alpha = alpha; in SetAlpha()
659 void SetGlobalAlpha(u8 alpha) in SetGlobalAlpha() argument
661 m_GlbAlpha = alpha; in SetGlobalAlpha()
Dlyt_Drawer.h355 void SetCurrentUniformAlpha( const f32 alpha );
Dlyt_Common.h163 u8 alpha);
Dlyt_Material.h956 u8 alpha,
Dlyt_Resources.h904 ut::ResU8 alpha; member
/NW4C-1.3.3/sources/libraries/gfx/
Dgfx_FrameBuffer.cpp42 u8 alpha = static_cast<u8>( 0.5f + nw::ut::Clamp(color.a, 0.0f, 1.0f) * 255.f ); in ColorToRGBA8() local
44 return (alpha) | (blue << 8) | (green << 16) | (red << 24); in ColorToRGBA8()
61 u8 alpha = static_cast<u8>( 0.5f + nw::ut::Clamp(color.a, 0.0f, 1.0f) * 1.f ); in ColorToRGB5A1() local
63 return static_cast<u16>( (alpha) | (blue << 1) | (green << 6) | (red << 11) ); in ColorToRGB5A1()
98 u8 alpha = static_cast<u8>( 0.5f + nw::ut::Clamp(color.a, 0.0f, 1.0f) * 15.f ); in ColorToRGBA4() local
100 return static_cast<u16>( (alpha) | (blue << 4) | (green << 8) | (red << 12) ); in ColorToRGBA4()
/NW4C-1.3.3/sources/libraries/lyt/
Dlyt_DrawerUniform.cpp209 Drawer::SetCurrentUniformAlpha( const f32 alpha ) in SetCurrentUniformAlpha() argument
211 m_UniformAddress.addrColor = alpha; in SetCurrentUniformAlpha()
244 register f32 alpha = globalAlpha * d; in SetUpVtxColors() local
260 colors[ j ][ 3 ] = alpha; in SetUpVtxColors()
266 colors[ i ][ 3 ] *= alpha; in SetUpVtxColors()
273 colors[ i ][ 3 ] = alpha; in SetUpVtxColors()
279 m_UniformAddress.addrColor = alpha; in SetUpVtxColors()
Dlyt_Window.cpp632 u8 alpha in DrawContent() argument
635 m_pMaterial->SetupGraphics(drawInfo, alpha); in DrawContent()
652 u8 alpha in DrawFrame() argument
663 frame.pMaterial->SetupGraphics(drawInfo, alpha, false); in DrawFrame()
693 u8 alpha in DrawFrame4() argument
714 frame.pMaterial->SetupGraphics(drawInfo, alpha, false); in DrawFrame4()
735 u8 alpha in DrawFrame8() argument
777 frame.pMaterial->SetupGraphics(drawInfo, alpha, false); in DrawFrame8()
Dlyt_Common.cpp229 u8 alpha in MultipleAlpha() argument
233 if (alpha != ut::Color8::ALPHA_MAX) in MultipleAlpha()
235 ret.a = u8(col.a * alpha / ut::Color8::ALPHA_MAX); in MultipleAlpha()
Dlyt_DrawerGraphics.cpp873 nw::ut::Color8 alpha = pMaterial->GetColor( tevStage.GetKonstSelAlpha() ); in SetUpGLTexEnvUser() local
949 NW_LYT_CMD_DATA_COLOR_ALPHA( rgb, alpha ), in SetUpGLTexEnvUser()
Dlyt_Material.cpp587 u8 alpha, in SetupGraphics() argument
621 scale * scale * alpha); in SetupGraphics()
/NW4C-1.3.3/SampleData/Graphics/Shader/JShader/
DReadMe.txt23 Vertex alpha (when present)
35 Vertex alpha (when present)
/NW4C-1.3.3/include/nw/font/
Dfont_RectDrawerCommand.h257 isDepthTestEnabled, depthFunc, depthMask, red, green, blue, alpha ) \ argument
259 red, green, blue, alpha, depthMask ), \
Dfont_CharWriter.h168 void SetAlpha(u8 alpha) in SetAlpha() argument
170 m_Alpha = alpha; in SetAlpha()
/NW4C-1.3.3/sources/libraries/demo/
Ddemo_GraphicsDrawing.cpp603 m_ShapeCombiner.stage[ stageIndex ].alpha.combine = PICA_DATA_TEX_ENV_COMBINE_REPLACE; in InitializeShapeGraphicsState()
610 …m_ShapeCombiner.stage[ stageIndex ].alpha.source[ sourceIndex ] = PICA_DATA_TEX_ENV_SRC_RGBA_PRIMA… in InitializeShapeGraphicsState()
615 …m_ShapeCombiner.stage[ stageIndex ].alpha.source[ sourceIndex ] = PICA_DATA_TEX_ENV_SRC_RGBA_PREVI… in InitializeShapeGraphicsState()
619 …m_ShapeCombiner.stage[ stageIndex ].alpha.operand[ sourceIndex ] = PICA_DATA_OPE_ALPHA_SRC_ALPH… in InitializeShapeGraphicsState()
623 m_ShapeCombiner.stage[ stageIndex ].alpha.scale = PICA_DATA_TEX_ENV_SCALE_1; in InitializeShapeGraphicsState()
/NW4C-1.3.3/include/nw/gfx/
Dgfx_GraphicsDevice.h190 static NW_INLINE void SetColorMask(bool red, bool green, bool blue, bool alpha);
1000 GraphicsDevice::SetColorMask(bool red, bool green, bool blue, bool alpha) in SetColorMask() argument
1005 (u32(alpha) << 3); in SetColorMask()
/NW4C-1.3.3/sources/libraries/font/
Dfont_CharWriter.cpp45 u8 alpha in MultiplyAlpha() argument
53 pDst->a = (src.a / floatAlphaMax) * (alpha / floatAlphaMax); in MultiplyAlpha()
Dfont_RectDrawer.cpp1860 const u32 alpha = m_Alpha; in UseCommandBuffer() local
1863 white.a = static_cast<u8>(white.a * alpha / 255); in UseCommandBuffer()
1864 black.a = static_cast<u8>(black.a * alpha / 255); in UseCommandBuffer()
/NW4C-1.3.3/documents/LayoutEditor/html/css/
Dmanpage.css259 list-style-type: upper-alpha;
/NW4C-1.3.3/documents/SoundMaker/html/css/
Dmanpage.css246 list-style-type: upper-alpha;
/NW4C-1.3.3/documents/CreativeStudio/html/common/
Dmanual.css443 list-style-type: upper-alpha;
/NW4C-1.3.3/documents/Viewer/html/css/
Dmanpage.css441 list-style-type: upper-alpha;

12