source: trunk/packages/vizservers/nanovis/RenderContext.cpp @ 2831

Last change on this file since 2831 was 2831, checked in by ldelgass, 12 years ago

Refactor texture classes, misc. cleanups, cut down on header pollution -- still
need to fix header deps in Makefile.in

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