Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Unified Diff: gpu/command_buffer/service/program_manager.h

Issue 2148723004: WebGL 2: make sure VertexAttrib type match the corresponding attrib type in shader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: coding style Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/command_buffer/service/program_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/program_manager.h
diff --git a/gpu/command_buffer/service/program_manager.h b/gpu/command_buffer/service/program_manager.h
index 42bf2b02895f3e4d7490cb9877c129673c66dd98..7db258199d59dc213437d8502482aa8eba0761be 100644
--- a/gpu/command_buffer/service/program_manager.h
+++ b/gpu/command_buffer/service/program_manager.h
@@ -399,6 +399,14 @@ class GPU_EXPORT Program : public base::RefCounted<Program> {
return fragment_output_written_mask_;
}
+ // The data are only valid after a successful link.
+ uint32_t vertex_input_type_mask() const {
+ return vertex_input_type_mask_;
yunchao 2016/07/20 15:14:30 A small change here. I'd like to name vertex_input
+ }
+ uint32_t vertex_input_written_mask() const {
+ return vertex_input_written_mask_;
+ }
+
private:
friend class base::RefCounted<Program>;
friend class ProgramManager;
@@ -436,6 +444,7 @@ class GPU_EXPORT Program : public base::RefCounted<Program> {
void UpdateFragmentInputs();
void UpdateProgramOutputs();
void UpdateFragmentOutputBaseTypes();
+ void UpdateVertexInputBaseTypes();
// Process the program log, replacing the hashed names with original names.
std::string ProcessLogInfo(const std::string& log);
@@ -549,6 +558,13 @@ class GPU_EXPORT Program : public base::RefCounted<Program> {
// Same layout as above, 2 bits per location, 0x03 if a location is occupied
// by an output variable, 0x00 if not.
uint32_t fragment_output_written_mask_;
+
+ // Vertex input variable base types: FLOAT, INT, or UINT.
+ // We have up to 16 outputs, each is encoded into 2 bits, total 32 bits
+ uint32_t vertex_input_type_mask_;
+ // Same layout as above, 2 bits per location, 0x03 if a location is occupied
+ // by an input variable, 0x00 if not.
+ uint32_t vertex_input_written_mask_;
};
// Tracks the Programs.
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/command_buffer/service/program_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698