|
Revision 13041, 1.1 kB
(checked in by robert, 14 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | #include <osg/GL> |
|---|
| 14 | #include <osg/LineStipple> |
|---|
| 15 | #include <osg/Notify> |
|---|
| 16 | |
|---|
| 17 | using namespace osg; |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | LineStipple::LineStipple() |
|---|
| 21 | { |
|---|
| 22 | _factor = 1; |
|---|
| 23 | _pattern = 0xffff; |
|---|
| 24 | } |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | LineStipple::~LineStipple() |
|---|
| 28 | { |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | void LineStipple::setFactor(GLint factor) |
|---|
| 32 | { |
|---|
| 33 | _factor = factor; |
|---|
| 34 | } |
|---|
| 35 | |
|---|
| 36 | void LineStipple::setPattern(GLushort pattern) |
|---|
| 37 | { |
|---|
| 38 | _pattern = pattern; |
|---|
| 39 | } |
|---|
| 40 | |
|---|
| 41 | void LineStipple::apply(State&) const |
|---|
| 42 | { |
|---|
| 43 | #ifdef OSG_GL1_AVAILABLE |
|---|
| 44 | glLineStipple(_factor, _pattern); |
|---|
| 45 | #else |
|---|
| 46 | OSG_NOTICE<<"Warning: LineStipple::apply(State&) - not supported."<<std::endl; |
|---|
| 47 | #endif |
|---|
| 48 | } |
|---|