source: nanovis/branches/1.1/graphics/RenderContext.cpp @ 4906

Last change on this file since 4906 was 3465, checked in by ldelgass, 11 years ago

Rename R2 library to nv::graphics and nv::util.

  • Property svn:eol-style set to native
File size: 331 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
4 */
5#include "RenderContext.h"
6
7using namespace nv::graphics;
8
9RenderContext::RenderContext() :
10    _cullMode(NO_CULL),
11    _fillMode(FILL),
12    _shadingModel(SMOOTH)
13{
14}
15
16RenderContext::~RenderContext()
17{
18}
19
Note: See TracBrowser for help on using the repository browser.