代码搜索:RGB
找到约 8,819 项符合「RGB」的源代码
代码结果 8,819
www.eeworm.com/read/155815/11845384
cpp xlistbox.cpp
#include "stdafx.h"
#include "XListBox.h"
int CXListBox::AddItem(LPCTSTR lpszItem, COLORREF rgb)
{
int nItem = AddString(lpszItem);
if (nItem >= 0)
SetItemData(nItem, rgb);
return nItem;
www.eeworm.com/read/13765/282607
c main.c
/****************************************************
*名 称: RGB测试文件 *
*功 能: RGB三种颜色输出 *
*备 注: 2011.1.26 *
贞明电子:http://shop58972409.taobao.com * *
*****************
www.eeworm.com/read/467011/1507865
h cmrgbheader.h
/*
* RGB file header
*
* Contains the definition of an IRIS RGB FILE header
*/
#ifndef CMRGBHEADER_H
#define CMRGBHEADER_H
typedef struct {
short int magic; /* IRIS image file magic
www.eeworm.com/read/240722/4570170
in rentest.in
% Emacs should use -*- keyval -*- mode.
render: (
filename = "rentest.oogl"
oogl_spheres = no
)
red: (
diffuse:rgb = [ 1.0 0.0 0.0 ]
ambient:rgb = [ 1.0 0
www.eeworm.com/read/240472/4573668
blurred with no offset
Cutout
1148347252 303.000
1148417134 0.00 inches
1466201192 0.25 inches
1332765556 93.000
1181491232 1718174258
1181500268 RGB: 100.0% 100.0% 100.0% (255 255 255)
1935963971 RGB: 0.0% 0.0% 0.0%
www.eeworm.com/read/240472/4573671
blue shadow over original
Cutout
1148347252 315.000
1148417134 0.11 inches
1466201192 0.15 inches
1332765556 100.000
1935963971 RGB: 0.0% 23.1% 57.6% (0 59 147)
1181491232 1718174258
1181500268 RGB: 100.0% 100.0% 100.0%
www.eeworm.com/read/240472/4573833
smoky
BurntEdges
1114793044 0.00 inches
1112700777 0.30 inches
1399024672 90.000
1112699765 1
1112697198 0
1112695663 RGB: 55.3% 54.9% 47.1% (141 140 120)
1181491232 1718174256
1181500268 RGB: 82.4%
www.eeworm.com/read/327176/3463504
h cmrgbheader.h
/*
* RGB file header
*
* Contains the definition of an IRIS RGB FILE header
*/
#ifndef CMRGBHEADER_H
#define CMRGBHEADER_H
typedef struct {
short int magic; /* IRIS image file magic
www.eeworm.com/read/314228/3638185
java namedrgb.java
package com.swtplus.widgets.combo;
import org.eclipse.swt.graphics.RGB;
/**
* NamedRGB represents a (you guessed it) named RGB value. This value object
* is used in conjunction with the Col
www.eeworm.com/read/377754/2696743
fs colorinvert.fs
// colorinvert.fs
//
// invert like a color negative
void main(void)
{
// invert color components
gl_FragColor.rgb = 1.0 - gl_Color.rgb;
gl_FragColor.a = 1.0;
}