~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/compositor/intern/COM_InputSocket.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        /**
102
102
         * @brief move all connections of this input socket to another socket
103
103
         * @param relinkToSocket the socket to move to connections to
104
 
         * @param autoconnect will a set operation be added when no connections exist
105
104
         * @param editorNodeInputSocketIndex index of the socket number of the bNode (used to retrieve the value for autoconnection)
106
105
         * @param system ExecutionSystem to update to
107
106
         */
143
142
        
144
143
        bool isStatic();
145
144
        
146
 
        float *getStaticValues();
147
145
        SocketReader *getReader();
148
146
        NodeOperation *getOperation() const;
149
147
};