Lines Matching refs:g
828 delta->g = GE_Divide2Fixed((g0-g1), ratio, 7, 12); in GE_CalcColorDelta()
829 delta->g = (MS_U32)(1<<(1+7+12)) - delta->g; // negative in GE_CalcColorDelta()
833 delta->g = GE_Divide2Fixed((g1-g0), ratio, 7, 12); in GE_CalcColorDelta()
1176 …rDeltaG = (pColorDeltaX->g & (0x1<<(7+12))) ? (-(MS_S32)((MS_U32)((0x1<<(1+7+12))-pColorDeltaX->g)… in GE_TrapezoidFill()
1210 …rDeltaG = (pColorDeltaY->g & (0x1<<(7+12))) ? (-(MS_S32)((MS_U32)((0x1<<(1+7+12))-pColorDeltaY->g)… in GE_TrapezoidFill()
2750 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_PRIM_GDX_L, (delta.g & 0xFFFF)); in MDrv_GE_DrawLine()
2751 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_PRIM_GDX_H, (delta.g >> 16)); in MDrv_GE_DrawLine()
3014 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_PRIM_GDX_L, delta.g & 0xFFFF); in MDrv_GE_FillRect()
3015 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_PRIM_GDX_H, delta.g >> 16); in MDrv_GE_FillRect()
3027 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_PRIM_GDY_L, delta.g & 0xFFFF); in MDrv_GE_FillRect()
3028 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_PRIM_GDY_H, delta.g >> 16); in MDrv_GE_FillRect()
4690 u16Color0 = (((MS_U16)(pOval->color.g)) << 8)+ (MS_U16)pOval->color.b; in MDrv_GE_DrawOval()