source: nanovis/branches/1.1/NvStdVertexShader.h @ 4829

Last change on this file since 4829 was 3502, checked in by ldelgass, 11 years ago

Add basic VTK structured points reader to nanovis, update copyright dates.

  • Property svn:eol-style set to native
File size: 497 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
4 *
5 */
6#ifndef NV_STD_VERTEX_SHADER_H
7#define NV_STD_VERTEX_SHADER_H
8
9#include "NvShader.h"
10
11class NvStdVertexShader : public NvShader
12{
13public:
14    NvStdVertexShader();
15
16    virtual ~NvStdVertexShader();
17
18    virtual void bind(float *mvp = NULL, float *mvInv = NULL);
19
20    virtual void unbind()
21    {
22        NvShader::unbind();
23    }
24
25private:
26    void init();
27};
28
29#endif
30
Note: See TracBrowser for help on using the repository browser.