Open Inventor Release 2024.1.1
 
Loading...
Searching...
No Matches
SoTextureCoordinateBindingElement.h
1/*=======================================================================
2 * Copyright 1991-1996, Silicon Graphics, Inc.
3 * ALL RIGHTS RESERVED
4 *
5 * UNPUBLISHED -- Rights reserved under the copyright laws of the United
6 * States. Use of a copyright notice is precautionary only and does not
7 * imply publication or disclosure.
8 *
9 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
10 * Use, duplication or disclosure by the Government is subject to restrictions
11 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
12 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
13 * in similar or successor clauses in the FAR, or the DOD or NASA FAR
14 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc.,
15 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
16 *
17 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
18 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
19 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
20 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
21 * GRAPHICS, INC.
22**=======================================================================*/
23/*=======================================================================
24** Author : Paul S. Strauss (MMM yyyy)
25** Modified by : Nick Thompson (MMM yyyy)
26** Modified by : Thad Beier (MMM yyyy)
27**=======================================================================*/
28/*=======================================================================
29 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
30 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
31 *** ***
32 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
33 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
34 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
35 *** ***
36 *** RESTRICTED RIGHTS LEGEND ***
37 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
38 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
39 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
40 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
41 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
42 *** ***
43 *** COPYRIGHT (C) 1996-2018 BY FEI S.A.S, ***
44 *** BORDEAUX, FRANCE ***
45 *** ALL RIGHTS RESERVED ***
46**=======================================================================*/
47/*=======================================================================
48** Modified by : VSG (MMM YYYY)
49**=======================================================================*/
50
51
52#ifndef _SO_TEXTURE_COORDINATE_BINDING_ELEMENT
53#define _SO_TEXTURE_COORDINATE_BINDING_ELEMENT
54
55#include <Inventor/SbVertexAttributeBinding.h>
56#include <Inventor/elements/SoReplacedTextureElement.h>
57#include <Inventor/STL/vector>
58
59#ifdef _MSC_VER
60#pragma warning( push )
61#pragma warning(disable:4251)
62#endif
63
76SoEXTENDER_Documented class SoTextureCoordinateBindingElement : public SoReplacedTextureElement {
77
79
80 public:
95
96
100 static void set(SoState *state, Binding binding) ;
101
105 static void set(SoState *state, SoNode *, Binding binding) ;
106
110 static Binding get(SoState *state, int unit=0) ;
111
116 { return PER_VERTEX_INDEXED; }
117
121 virtual void push(SoState *) ;
122
126 virtual void print(FILE *fp) const;
127
128private:
129
131 virtual void commonInit();
132
134 virtual void init(SoState *state);
135
136 private:
137 // Initializes the SoTextureCoordinateBindingElement class
138 static void initClass();
139 static void exitClass();
140
141private:
143
144 private:
145
146 Binding& getBinding(const size_t unit) const;
147
148 mutable std::vector<Binding> m_coordBinding ;
149};
150
151#ifdef _MSC_VER
152#pragma warning( pop )
153#endif
154
155#endif /* _SO_TEXTURE_COORDINATE_BINDING_ELEMENT */
156
157
@ PER_VERTEX_INDEXED
One attribute for each vertex, indexed.
@ PER_VERTEX
One attribute for each vertex.
Abstract base class for all database nodes.
Definition SoNode.h:145
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Abstract base cl...
Traversal state.
Definition SoState.h:74
Stores the current 3D texture coordinates.
static void set(SoState *state, Binding binding)
Sets the current texture binding in the state.
virtual void print(FILE *fp) const
Prints element (for debugging).
static Binding getDefault()
Returns the default texture binding.
virtual void push(SoState *)
Overrides push() method to copy values from next instance in the stack.
Binding
The choice of values is for compatibility with Open Inventor 2.0 binary format files.
@ PER_VERTEX_INDEXED
Per vertex, indexed, texture coordinates.
static Binding get(SoState *state, int unit=0)
Returns current texture binding from the state.
static void set(SoState *state, SoNode *, Binding binding)
Sets the current texture binding in the state.