代码搜索:RGB
找到约 8,819 项符合「RGB」的源代码
代码结果 8,819
www.eeworm.com/read/154890/5632895
hh rw_ppm.hh
/*********************************************************************
fileio/writeppm.hh
purpose:
Functions to save RGB images into PPM P6-type (24bit binary)
files and to save the lumin
www.eeworm.com/read/154890/5632900
am makefile.am
## Makefile.am for libvideogfx/libvideogfx/graphics/lowlevel
if ENABLE_MMX
noinst_LTLIBRARIES = \
libvideogfx-graphics-lowlevel.la \
libvideogfx-graphics-lowlevel-mmx.la
else
noinst_LTLIBRARIES = \
www.eeworm.com/read/294755/8207969
h spcadecoder.h
#ifndef SPCADECODER_H
#define SPCADECODER_H
#include "spca50x.h"
/* Input data output Palette define here */
#define VIDEO_PALETTE_RGB565 3 /* 16bit RGB */
#define VIDEO_PALETTE_RGB24 4 /* 24bit
www.eeworm.com/read/414915/11091526
c yuv2ppm.c
#include
#include
#include
#define TEST_WIDTH 320
#define TEST_HEIGHT 240
#define YUV2RGB(y, u, v, r, g, b)\
r = y + ((v*1436) >>10);\
g = y - ((u*352 + v*731) >> 1
www.eeworm.com/read/411062/11257980
searchresults 2440test_r04.searchresults
---- frameBuffer16BitTft240320 Matches (15 in 6 files) ----
Camif.c: frameBuffer16BitTft240320[y][x/2] = rgb_data0;
Camif.c: frameBuffer16BitTft240320[y][x/2] = rgb_data0;
Camif.c:// memcpy((un
www.eeworm.com/read/300216/13928470
c jccolor.c
/*
* jccolor.c
*
* Copyright (C) 1991, 1992, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying READ
www.eeworm.com/read/134149/14003739
vhd colproc.vhd
--
-- File colproc.vhd, Color Processor
-- Project: VGA
-- Author : Richard Herveille. Ideas and thoughts: Sherif Taher Eid
-- rev.: 0.1 May 1st, 2001
-- rev.: 0.2 June 23rd, 2001. Removed
www.eeworm.com/read/103884/15717510
h ddutil.h
#ifndef _DDUTIL_H_
#define _DDUTIL_H_
#include "ddraw.h"
extern LPDIRECTDRAW g_pDD;
extern LPDIRECTDRAWSURFACE g_pDDSPrimary;
extern LPDIRECTDRAWSURFACE g_pDDSOverlay;
extern DDOVERLAYFX
www.eeworm.com/read/101434/15833354
cpp base64.cpp
// Base64.cpp
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) 1996-1997, Chris Sells
// All rights reserved.
//
// NO WARRANTIES ARE EXTENDED. USE A
www.eeworm.com/read/13298/271235
c bmp.c
//**********************************************************************************************
//* 文 件 名 : bmp.c
//*
//* 文件描述 : 图片BMP解码 RGB24 to TFTLCD(RGB16/RGB565)
//*
//* 作 者 : kni