You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
removed the class name qualifier from member headings and table entries in concrt and amp (MicrosoftDocs#124)
* fixed syntax blocks with IUIAnimationTransitionFactory pointers
* more code block fixes in mfc
* fixes in atl syntax blocks
* more atl syntax fixes
* syntax formatting in atl-mfc-shared
* manual formatting tweaks in mfc-atl-shared and atl
* removed code reference to non-existing snippet
* fixes to broken tables in concrt and amp
* cleaned up headings in amp and concrt per mvp feedback
* remvoed type qualification from headings and table entries
Copy file name to clipboardExpand all lines: docs/parallel/amp/reference/accelerator-view-class.md
+53-36Lines changed: 53 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -49,39 +49,39 @@ class accelerator_view;
49
49
50
50
|Name|Description|
51
51
|----------|-----------------|
52
-
|[accelerator_view::accelerator_view Constructor](#ctor)|Initializes a new instance of the `accelerator_view` class.|
53
-
|[accelerator_view::~accelerator_view Destructor](#dtor)|Destroys the `accelerator_view` object.|
52
+
|[accelerator_view Constructor](#ctor)|Initializes a new instance of the `accelerator_view` class.|
53
+
|[~accelerator_view Destructor](#dtor)|Destroys the `accelerator_view` object.|
54
54
55
55
### Public Methods
56
56
57
57
|Name|Description|
58
58
|----------|-----------------|
59
-
|[accelerator_view::create_marker Method](#create_marker)|Returns a future to track the completion of all commands submitted so far to this `accelerator_view` object.|
60
-
|[accelerator_view::flush Method](#flush)|Submits all pending commands queued to the `accelerator_view` object to the accelerator for execution.|
61
-
|[accelerator_view::get_accelerator Method](#get_accelerator)|Returns the `accelerator` object for the `accelerator_view` object.|
62
-
|[accelerator_view::get_is_auto_selection Method](#get_is_auto_selection)|Returns a Boolean value that indicates whether the runtime will automatically select an appropriate accelerator when the `accelerator_view` object is passed to a [parallel_for_each](concurrency-namespace-functions-amp.md#parallel_for_each).|
63
-
|[accelerator_view::get_is_debug Method](#get_is_debug)|Returns a Boolean value that indicates whether the `accelerator_view` object has the DEBUG layer enabled for extensive error reporting.|
64
-
|[accelerator_view::get_queuing_mode Method](#get_queuing_mode)|Returns the queuing mode for the `accelerator_view` object.|
65
-
|[accelerator_view::get_version Method](#get_version)|Returns the version of the `accelerator_view`.|
66
-
|[accelerator_view::wait Method](#wait)|Waits for all commands submitted to the `accelerator_view` object to finish.|
59
+
|[create_marker Method](#create_marker)|Returns a future to track the completion of all commands submitted so far to this `accelerator_view` object.|
60
+
|[flush Method](#flush)|Submits all pending commands queued to the `accelerator_view` object to the accelerator for execution.|
61
+
|[get_accelerator Method](#get_accelerator)|Returns the `accelerator` object for the `accelerator_view` object.|
62
+
|[get_is_auto_selection Method](#get_is_auto_selection)|Returns a Boolean value that indicates whether the runtime will automatically select an appropriate accelerator when the `accelerator_view` object is passed to a [parallel_for_each](concurrency-namespace-functions-amp.md#parallel_for_each).|
63
+
|[get_is_debug Method](#get_is_debug)|Returns a Boolean value that indicates whether the `accelerator_view` object has the DEBUG layer enabled for extensive error reporting.|
64
+
|[get_queuing_mode Method](#get_queuing_mode)|Returns the queuing mode for the `accelerator_view` object.|
65
+
|[get_version Method](#get_version)|Returns the version of the `accelerator_view`.|
66
+
|[wait Method](#wait)|Waits for all commands submitted to the `accelerator_view` object to finish.|
67
67
68
68
### Public Operators
69
69
70
70
|Name|Description|
71
71
|----------|-----------------|
72
-
|[accelerator_view::operator!= Operator](#operator_neq)|Compares this `accelerator_view` object with another and returns `false` if they are the same; otherwise, returns `true`.|
73
-
|[accelerator_view::operator= Operator](#operator_eq)|Copies the contents of the specified `accelerator_view` object into this one.|
74
-
|[accelerator_view::operator== Operator](#operator_eq_eq)|Compares this `accelerator_view` object with another and returns `true` if they are the same; otherwise, returns `false`.|
72
+
|[operator!= Operator](#operator_neq)|Compares this `accelerator_view` object with another and returns `false` if they are the same; otherwise, returns `true`.|
73
+
|[operator= Operator](#operator_eq)|Copies the contents of the specified `accelerator_view` object into this one.|
74
+
|[operator== Operator](#operator_eq_eq)|Compares this `accelerator_view` object with another and returns `true` if they are the same; otherwise, returns `false`.|
75
75
76
76
### Public Data Members
77
77
78
78
|Name|Description|
79
79
|----------|-----------------|
80
-
|[accelerator_view::accelerator Data Member](#accelerator)|Gets the `accelerator` object for the `accelerator_view` object.|
81
-
|[accelerator_view::is_auto_selection Data Member](#is_auto_selection)|Gets a Boolean value that indicates whether the runtime will automatically select an appropriate accelerator when the `accelerator_view` object is passed to a [parallel_for_each](concurrency-namespace-functions-amp.md#parallel_for_each).|
82
-
|[accelerator_view::is_debug Data Member](#is_debug)|Gets a Boolean value that indicates whether the `accelerator_view` object has the DEBUG layer enabled for extensive error reporting.|
83
-
|[accelerator_view::queuing_mode Data Member](#queuing_mode)|Gets the queuing mode for the `accelerator_view` object.|
84
-
|[accelerator_view::version Data Member](#version)|Gets the version of the accelerator.|
80
+
|[accelerator Data Member](#accelerator)|Gets the `accelerator` object for the `accelerator_view` object.|
81
+
|[is_auto_selection Data Member](#is_auto_selection)|Gets a Boolean value that indicates whether the runtime will automatically select an appropriate accelerator when the `accelerator_view` object is passed to a [parallel_for_each](concurrency-namespace-functions-amp.md#parallel_for_each).|
82
+
|[is_debug Data Member](#is_debug)|Gets a Boolean value that indicates whether the `accelerator_view` object has the DEBUG layer enabled for extensive error reporting.|
83
+
|[queuing_mode Data Member](#queuing_mode)|Gets the queuing mode for the `accelerator_view` object.|
84
+
|[version Data Member](#version)|Gets the version of the accelerator.|
85
85
86
86
## Inheritance Hierarchy
87
87
`accelerator_view`
@@ -98,7 +98,7 @@ class accelerator_view;
98
98
99
99
**Namespace:** Concurrency
100
100
101
-
## <aname="accelerator"></a> accelerator_view::accelerator Data Member
101
+
## <aname="accelerator"></a> accelerator
102
102
103
103
Gets the accelerator object for the accelerator_view object.
104
104
@@ -108,7 +108,8 @@ Gets the accelerator object for the accelerator_view object.
Returns a Boolean value that indicates whether the runtime will automatically select an appropriate accelerator when the accelerator_view is passed to a [parallel_for_each](concurrency-namespace-functions-amp.md#parallel_for_each).
Gets a Boolean value that indicates whether the runtime will automatically select an appropriate accelerator when the accelerator_view is passed to a [parallel_for_each](concurrency-namespace-functions-amp.md#parallel_for_each).
207
216
208
217
### Syntax
@@ -211,7 +220,8 @@ Gets a Boolean value that indicates whether the runtime will automatically selec
Copy file name to clipboardExpand all lines: docs/parallel/amp/reference/accelerator-view-removed-class.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -50,13 +50,13 @@ class accelerator_view_removed : public runtime_exception;
50
50
51
51
|Name|Description|
52
52
|----------|-----------------|
53
-
|[accelerator_view_removed::accelerator_view_removed Constructor](#ctor)|Initializes a new instance of the `accelerator_view_removed` class.|
53
+
|[accelerator_view_removed Constructor](#ctor)|Initializes a new instance of the `accelerator_view_removed` class.|
54
54
55
55
### Public Methods
56
56
57
57
|Name|Description|
58
58
|----------|-----------------|
59
-
|[accelerator_view_removed::get_view_removed_reason Method](#get_view_removed_reason)|Returns an HRESULT error code indicating the cause of the `accelerator_view` object's removal.|
59
+
|[get_view_removed_reason Method](#get_view_removed_reason)|Returns an HRESULT error code indicating the cause of the `accelerator_view` object's removal.|
60
60
61
61
## Inheritance Hierarchy
62
62
`exception`
@@ -70,7 +70,8 @@ class accelerator_view_removed : public runtime_exception;
0 commit comments