source: trunk/vizservers/nanovis/shaders/copy_texcoord.cg @ 884

Last change on this file since 884 was 226, checked in by mmc, 18 years ago
  • Added code for Wei's visualization server.
  • Fixed the energyLevels widget so that it doesn't barf when the user attempts to download its contents.
File size: 595 bytes
Line 
1/*
2 * ======================================================================
3 *  AUTHOR:  Wei Qiao <qiaow@purdue.edu>
4 *           Purdue Rendering and Perceptualization Lab (PURPL)
5 *
6 *  Copyright (c) 2004-2006  Purdue Research Foundation
7 *
8 *  See the file "license.terms" for information on usage and
9 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
10 * ======================================================================
11 */
12
13// copy texture coordinate to output color
14float4 main(in float4 texcoord : TEXCOORD0) : COLOR
15{
16    return texcoord;
17}
Note: See TracBrowser for help on using the repository browser.