OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:quadcolor
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_blend.c
151
float (*
quadColor
)[4],
169
src[j][0] = float_to_ubyte(
quadColor
[j][0]); /* P0 */
170
src[j][1] = float_to_ubyte(
quadColor
[j][1]); /* P1 */
171
src[j][2] = float_to_ubyte(
quadColor
[j][2]); /* P2 */
172
src[j][3] = float_to_ubyte(
quadColor
[j][3]); /* P3 */
245
quadColor
[j][0] = ubyte_to_float(res[j][0]);
246
quadColor
[j][1] = ubyte_to_float(res[j][1]);
247
quadColor
[j][2] = ubyte_to_float(res[j][2]);
248
quadColor
[j][3] = ubyte_to_float(res[j][3]);
256
* \param
quadColor
the incoming quad color
[
all
...]
sp_quad_fs.c
91
float (*
quadColor
)[4] = quad->output.color[cbuf];
96
quadColor
[3][j] *= quad->input.coverage[j];
/external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_blend.c
151
float (*
quadColor
)[4],
169
src[j][0] = float_to_ubyte(
quadColor
[j][0]); /* P0 */
170
src[j][1] = float_to_ubyte(
quadColor
[j][1]); /* P1 */
171
src[j][2] = float_to_ubyte(
quadColor
[j][2]); /* P2 */
172
src[j][3] = float_to_ubyte(
quadColor
[j][3]); /* P3 */
245
quadColor
[j][0] = ubyte_to_float(res[j][0]);
246
quadColor
[j][1] = ubyte_to_float(res[j][1]);
247
quadColor
[j][2] = ubyte_to_float(res[j][2]);
248
quadColor
[j][3] = ubyte_to_float(res[j][3]);
256
* \param
quadColor
the incoming quad color
[
all
...]
sp_quad_fs.c
91
float (*
quadColor
)[4] = quad->output.color[cbuf];
96
quadColor
[3][j] *= quad->input.coverage[j];
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java
77
private VertexBuffer
quadColor
;
84
quadColor
= new VertexBuffer(Type.Color);
85
quadColor
.setNormalized(true);
87
quadColor
.setupData(Usage.Stream, 4, Format.UnsignedByte, bb);
88
quad.setBuffer(
quadColor
);
191
// ByteBuffer buf = (ByteBuffer)
quadColor
.getData();
201
//
quadColor
.updateData(buf);
347
ByteBuffer buf = (ByteBuffer)
quadColor
.getData();
357
quadColor
.updateData(buf);
Completed in 130 milliseconds