Commit 35df09f8 by Chris Forbes

Remove transform feedback remnants

Bug: b/125909515 Change-Id: I18f1ed398d85a914863f4b93a2795637e20028b6 Reviewed-on: https://swiftshader-review.googlesource.com/c/25328Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarChris Forbes <chrisforbes@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
parent 7c33e88e
...@@ -223,8 +223,6 @@ namespace sw ...@@ -223,8 +223,6 @@ namespace sw
instanceID = 0; instanceID = 0;
occlusionEnabled = false; occlusionEnabled = false;
transformFeedbackQueryEnabled = false;
transformFeedbackEnabled = 0;
lineWidth = 1.0f; lineWidth = 1.0f;
......
...@@ -210,8 +210,6 @@ namespace sw ...@@ -210,8 +210,6 @@ namespace sw
int instanceID; int instanceID;
bool occlusionEnabled; bool occlusionEnabled;
bool transformFeedbackQueryEnabled;
uint64_t transformFeedbackEnabled;
// Pixel processor states // Pixel processor states
bool rasterizerDiscard; bool rasterizerDiscard;
......
...@@ -94,9 +94,6 @@ namespace sw ...@@ -94,9 +94,6 @@ namespace sw
void setUniformBuffer(int index, sw::Resource* uniformBuffer, int offset); void setUniformBuffer(int index, sw::Resource* uniformBuffer, int offset);
void lockUniformBuffers(byte** u, sw::Resource* uniformBuffers[]); void lockUniformBuffers(byte** u, sw::Resource* uniformBuffers[]);
void setTransformFeedbackBuffer(int index, sw::Resource* transformFeedbackBuffer, int offset, unsigned int reg, unsigned int row, unsigned int col, unsigned int stride);
void lockTransformFeedbackBuffers(byte** t, unsigned int* v, unsigned int* r, unsigned int* c, unsigned int* s, sw::Resource* transformFeedbackBuffers[]);
void setInstanceID(int instanceID); void setInstanceID(int instanceID);
void setTextureFilter(unsigned int sampler, FilterType textureFilter); void setTextureFilter(unsigned int sampler, FilterType textureFilter);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment